Horje
make random alphabet in c# Code Example
make random alphabet in c#
private static Random random = new Random();
public static string RandomString(int length)
{
    const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    return new string(Enumerable.Repeat(chars, length)
      .Select(s => s[random.Next(s.Length)]).ToArray());
}




Csharp

Related
c# array max Code Example c# array max Code Example
c# font bold set Code Example c# font bold set Code Example
how to pass string value to enum in c# Code Example how to pass string value to enum in c# Code Example
c# round double Code Example c# round double Code Example
c# first item i list Code Example c# first item i list Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9