Ejemplo n.º 1
0
 public static int Random(int count)
 {
     return(RandomImpl.Next(count));
 }
Ejemplo n.º 2
0
 public static int RandomList(params int[] list)
 {
     return(list[RandomImpl.Next(list.Length)]);
 }