Is it possible, from .NET, to mimic the exact randomization that Java uses? I have a seed, and I would like to be able to recieve the same results in both C# and Java when creating a random number.
feedback
|
|
If you have the source code of the
| |||||||||||||||
feedback
|
|
You don't need to read the source code. The formula is a one-liner and is given in the documentation for Here's a partial translation:
Example:
Output on both platforms is | ||||
|
feedback
|
|
If you don't need a cryptographically secure pseudorandom number generator then I would go for the Mersenne twister. You can find source code for C# here and Java here. | |||||||||
feedback
|
|
Well, you can look in the source code for Random.java and copy the algorithm, constants, etc.etc, but Random uses System.nanoTime in its constructor so you won't get the same results. From java.util.Random
I wouldn't be at all surprised if the source in C# would show you something similar. Edit: Disregard, as has been pointed out, the constructor that takes an input seed never accesses time. | |||||||||
feedback
|
|
Maybe it would make sense to implement your own simple pseudo-random number generator? That way you have complete control and can garauntee the same seed gives the same results in both environments. Probably a bit more work than porting one to the other though. | |||
|
feedback
|
|
Another option might be to write your random numbers out to a file once from one platform and then just load your random numbers for both platforms from that file, or you could load them from a service such as random.org | |||
|
feedback
|