Randomly generated hexadecimal number in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T00:45:24Zhttp://stackoverflow.com/feeds/question/1054076http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1054076/randomly-generated-hexadecimal-number-in-c2 Randomly generated hexadecimal number in C#shizbiz2009-06-28T02:29:04Z2009-06-28T02:43:06Z
<p>How can I generate a random hexadecimal number with a length of my choice using C#?</p>
http://stackoverflow.com/questions/1054076/randomly-generated-hexadecimal-number-in-c/1054087#10540878Answer by Mehrdad Afshari for Randomly generated hexadecimal number in C#Mehrdad Afshari2009-06-28T02:37:26Z2009-06-28T02:43:06Z<pre><code>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");
}
</code></pre>
http://stackoverflow.com/questions/1054076/randomly-generated-hexadecimal-number-in-c/1054089#10540893Answer by womp for Randomly generated hexadecimal number in C#womp2009-06-28T02:37:47Z2009-06-28T02:37:47Z<pre><code> Random random = new Random();
int num = random.Next();
string hexString = num.ToString("X");
</code></pre>
<p>random.Next() takes arguments that let you specify a min and a max value, so that's how you would control the length.</p>
http://stackoverflow.com/questions/1054076/randomly-generated-hexadecimal-number-in-c/1054098#10540982Answer by KristoferA for Randomly generated hexadecimal number in C#KristoferA2009-06-28T02:43:01Z2009-06-28T02:43:01Z<p>Depends on how random you want it, but here are 3 alternatives:
1) I usually just use Guid.NewGuid and pick a portion of it (dep. on how large number I want).</p>
<p>2) System.Random (see other replies) is good if you just want 'random enough'. </p>
<p>3) System.Security.Cryptography.RNGCryptoServiceProvider</p>