random numbers in c# code example
Example 1: c# random number
int random_number = new Random().Next(1, 10)
Example 2: get random number c#
Random rnd = new Random();
int month = rnd.Next(1, 13);
int dice = rnd.Next(1, 7);
int card = rnd.Next(52);
Example 3: c# random
Random rnd = new Random();
Byte[] bytes = new Byte[20];
rnd.NextBytes(bytes);
for (int ctr = 1; ctr <= bytes.Length; ctr++) {
Console.Write("{0,3} ", bytes[ctr - 1]);
if (ctr % 10 == 0) Console.WriteLine();
}
Example 4: Random number in C#
The following code return a random number lower than 1000
int num = random.Next(1000);
The following code returns a random number between the min and the max range.
private readonly Random _random = new Random();
public int RandomNumber(int min, int max)
{
return _random.Next(min, max);
}