static Random random = new Random();
public static string GetRandomHexNumber(int digits)
{
byte[] buffer = new byte[digits / 2];
random.NextBytes(buffer);
string result = String.Concat(buffer.Select(x => x.ToString("x2")).ToArray())x.ToString("X2")).ToArray());
if (digits % 2 == 0)
return result;
return result + random.Next(16).ToString("x")random.Next(16).ToString("X");
}
|
2 | edited body | ||
|
|
||||
|
1 |
|
||
|
||||
