Get next random number in double : Random « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- Random
Get next random number in double

using System;
using System.Windows.Forms;
using System.Drawing;
public class Test {
static void Main() {
Random roller = new Random();
double toHit = roller.NextDouble();
Console.WriteLine(toHit);
}
}
Related examples in the same category