Computer >> Computer tutorials >  >> Programming >> C#

Random Numbers in C#


To generate random numbers in C#, use the Next(minValue, MaxValue) method. The parameters are used to set the minimum and maximum values.

Next(100,200);

We have set the above method under Random() object.

Random rd = new Random();
int rand_num = rd.Next(100,200);

The following is an example −

Example

using System;
class Program {
   static void Main() {
      Random rd = new Random();

      int rand_num = rd.Next(100,200);

      Console.WriteLine(rand_num);
   }
}

Output

182