Randomly generated hexadecimal number in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T00:45:24Z http://stackoverflow.com/feeds/question/1054076 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1054076/randomly-generated-hexadecimal-number-in-c 2 Randomly generated hexadecimal number in C# shizbiz 2009-06-28T02:29:04Z 2009-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#1054087 8 Answer by Mehrdad Afshari for Randomly generated hexadecimal number in C# Mehrdad Afshari 2009-06-28T02:37:26Z 2009-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 =&gt; 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#1054089 3 Answer by womp for Randomly generated hexadecimal number in C# womp 2009-06-28T02:37:47Z 2009-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#1054098 2 Answer by KristoferA for Randomly generated hexadecimal number in C# KristoferA 2009-06-28T02:43:01Z 2009-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>