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