show/hide this revision's text 2 edited body
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");
}
show/hide this revision's text 1
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());
    if (digits % 2 == 0)
        return result;
    return result + random.Next(16).ToString("x");
}