Ejemplo n.º 1
0
 public double NextDouble()
 {
     return(Math.Random());
 }
Ejemplo n.º 2
0
 public int Next(int max)
 {
     return((int)(Math.Random() * max));
 }
Ejemplo n.º 3
0
 public int Next(int min, int max)
 {
     return(min + (int)(Math.Random() * (max - min)));
 }