generate a random number between 0 and 1 in csharp

To generate a random number between 0 and 1 in C#, you can use the Random class from the System namespace. Here's an example code:

main.cs
Random random = new Random();
double randomNumber = random.NextDouble();
Console.WriteLine(randomNumber);
106 chars
4 lines

The NextDouble() method returns a random double value between 0.0 and 1.0. You can assign this value to a double variable and use it in your program. The Random class uses the current time as seed value to generate random numbers. If you create multiple Random objects within a short period of time, they will produce the same sequence of random numbers, so it's recommended to create only one Random object for the entire program.

gistlibby LogSnag