Is generating real random numbers this easy in C#?
- by JL
I found this code using Google.
private int RandomNumber(int min, int max)
{
Random random = new Random();
return random.Next(min, max);
}
Is this really all there is to generating REAL random numbers in C#? I intend to generate on a small scale between values 1-10.
Thanks