What is Random in C# code example
Example 1: c# random int
Random rnd = new Random();
int number = rnd.Next(1, 10);
Example 2: how to generate random numbers in c#
int randomNumber = UnityEngine.Random.Range(1, 100);
Example 3: generate a random number in c#
Random rnd = new Random();
int value = rnd.Next(min,max);
Console.Write(value);
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);
}