The simple expressions are literals such as integer and real numbers and names of variables.
The following example evaluates a simple mathematical expression.
public static void Example1()
{
string expression = "1 + 2";
var lambdaParser = new NReco.Linq.LambdaParser();
var result = lambdaParser.Eval(expression, new Dictionary<string, object>());
Console.WriteLine("{0} = {1}", expression, result);
}
In an expression with multiple operators, the operators with higher precedence are evaluated before the operators with lower precedence.
In the following example, multiplication is performed first because it has higher precedence than addition.
public static void Example2()
{
string expression = "2 + 2 * 3";
var lambdaParser = new NReco.Linq.LambdaParser();
var result = lambdaParser.Eval(expression, new Dictionary<string, object>());
Console.WriteLine("{0} = {1}", expression, result);
}
You can use the parentheses to change the order of evaluation imposed by operator precedence.
public static void Example3()
{
string expression = "(2 + 2) * 3";
var lambdaParser = new NReco.Linq.LambdaParser();
var result = lambdaParser.Eval(expression, new Dictionary<string, object>());
Console.WriteLine("{0} = {1}", expression, result);
}