How can I generate random Int64 and UInt64 values using the Random class in C#?
|
1
|
|
|||
|
|
|
|
This should do the trick. (It's an extension method so that you can call it just as you call the normal
Just replace Note: Since no context was provided regarding security or the desired randomness of the generated numbers (in fact the OP specifically mentioned the |
||||||||
|
|
|
Random r=new Random(); int j=r.next(1,23); Console.WriteLine(j); |
||
|
|
|
Here you go, this uses the crytpo services (not the Random class), which is (theoretically) a better RNG then the Random class. You could easily make this an extension of Random or make your own Random class where the RNGCryptoServiceProvider is a class-level object.
|
||
|
|
|
You can use bit shift to put together a 64 bit random number from 31 bit random numbers, but you have to use three 31 bit numbers to get enough bits:
|
||
|
|
|
|
I always use this to get my random seed (error checking removed for brevity):
random.org uses atmospheric noise to generate the randomness and is apparently used for lotteries and such. |
|||
|
|
|
|
You don't say how you're going to use these random numbers...keep in mind that values returned by Random are not "cryptographically secure" and they shouldn't be used for things involving (big) secrets or (lots of) money. |
||||||||||
|
|
|
You could create a
|
||
|
|
|
|
Use
Note that using |
||||||||
|
