Reference: link text
i cannot understand the following line , can anybody provide me some example for the below statement?
If two instances of Random are cre
The Random class basically is a Psuedorandom Number Generator (also known as Deterministic random bit generator) that generates a sequence of numbers that approximates the properties of random numbers. It's not generally random but deterministic as it can be determined by small random states in the generator (such as seed
). Because of the deterministic nature, you can generate identical result if you the sequence of methods and seeds are identical on 2 generators.