BisectionMethod.MainClass.f C# (CSharp) Method

f() private static method

private static f ( double x ) : double
x double
return double
        private static double f(double x)
        {
            return x * Math.Exp(-x) + Math.Pow(x, 3) + 1;
        }
MainClass