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
Updated on: 2020-06-22T07:27:06+05:30

22K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements