How can I generate a random hexadecimal number with a length of my choice using C#?
|
|
|
|||
|
|
|
|
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). 2) System.Random (see other replies) is good if you just want 'random enough'. 3) System.Security.Cryptography.RNGCryptoServiceProvider |
||||||||||||
|
|
|
random.Next() takes arguments that let you specify a min and a max value, so that's how you would control the length. |
||||||
|
