C # Random colors and random letters

Source: Internet
Author: User

Get color randomly

 PublicSystem.Drawing.Color Getrandomcolor () {Random Randomnum_first=NewRandom (Guid.NewGuid ().        GetHashCode ()); Random Randomnum_sencond=NewRandom (Guid.NewGuid ().                GetHashCode ()); //to display on a white background, try to create a dark color        intint_red = Randomnum_first.next ( the); intInt_green = Randomnum_sencond.next ( the); intInt_blue = (int_red + int_green > -) ?0: --Int_red-Int_green; Int_blue= (Int_blue >255) ?255: Int_blue; returnSystem.Drawing.Color.FromArgb (int_red, Int_green, Int_blue); }

Random Letters

 Public Static stringGetpagename () {stringStrrand =String.Empty; System.Random Random=NewRandom (Guid.NewGuid ().        GetHashCode ()); stringstr ="Qwertyuiopasdfghjklmnbvcxz";  for(inti =0; I <6; i++) {Strrand+ = Str[random. Next (0, -)].        ToString (); }        returnStrrand; }

C # Random colors and random letters

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.