C# Random number

To get basic semi-random numbers:

Random random = new Random();
int n = random.Next(min, max);

Comments are closed.