Ejemplo n.º 1
0
 public static IEnumerable <double> Generate(this Randoms.IRandomGenerator gen, int count, Random rng = null)
 {
     for (int i = 0; i < count; i++)
     {
         yield return(gen.GetNext(rng));
     }
 }