generate a random number in c#
Random rnd = new Random();
int value = rnd.Next(min,max);
Console.Write(value);
generate a random number in c#
Random rnd = new Random();
int value = rnd.Next(min,max);
Console.Write(value);
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.
// Instantiate random number generator.
private readonly Random _random = new Random();
// Generates a random number within a range.
public int RandomNumber(int min, int max)
{
return _random.Next(min, max);
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us