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

 Live Demo

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

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

      Console.WriteLine(rand_num);
   }
}

Output

182

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 22-Jun-2020

17K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements