示例#1
0
 public static float[] FactorialArray()
 {
     return(Enumerable.Range(0, 10).Select(i => (float)Calculators.Factorial(i)).ToArray());
 }