namespace LoreSoft.MathExpressions { /// Delegate used by an expression to do the math evaluation. /// The numbers to evaluate. /// The result of the evaluated numbers. public delegate double MathEvaluate(double[] numbers); }