In a programming language, operators are special symbols such as +
, -
, ^
, etc., that perform some action on operands. The ExpressiveParser library manages a large set of C# operators, and it also respects the C# precedence rules of operators.
For example, operators are the signs for adding, subtracting, multiplication, and division like +
, -
, *
, /
, and the operations they perform on the integers and the real numbers.
Below is a list of the different types of operators which are most common.
Type | Operators |
---|---|
Arithmetic | - , + , * , / , % , ++ , -- |
Logical | && , \|\| , ! |
Bitwise | & , \| , ^ , ~ , << , >> |
Comparison | == ,!= , > , < , >= , <= |
In C#, the arithmetical operators are +
, -
, *
, etc., and they perform mathematical operations such as addition, subtraction, and multiplication respectively on numerical values and the result is also a numerical value.
Here are some examples of arithmetic operators and their effects.
public static void Example1()
{
var varibles = new Dictionary<string, object>()
{
{ "a", 10 },
{ "b", 5 },
};
List<string> expressions = new List<string>()
{
"[a] + [b]",
"[a] - [b]",
"[a] * [b]",
"[a] / [b]",
"[a] % [b]",
};
foreach (var expression in expressions)
{
var exprObj = new Expression(expression);
var result = exprObj.Evaluate(varibles);
Console.WriteLine("{0}: {1}", expression, result);
}
}
Let's run the above code, and you will see the following output.
[a] + [b]: 15
[a] - [b]: 5
[a] * [b]: 50
[a] / [b]: 2
[a] % [b]: 0
Logical operators or you can say Boolean operators take Boolean values and return a Boolean result (true
or false
).
The following table contains the logical operators in C# and the operations that they perform.
A | B | A && B | A || B |
---|---|---|---|
true | true | true | true |
true | false | false | true |
false | true | false | true |
false | false | false | false |
Let's consider the following simple examples of logical operators.
public static void Example2()
{
var varibles = new Dictionary<string, object>()
{
{ "a", true },
{ "b", false },
};
List<string> expressions = new List<string>()
{
"[a] && [b]",
"[a] || [b]",
"[a] ^ [b]",
"![b]",
"true || [b]",
"(5 > 7) ^ ([a] == [b])"
};
foreach (var expression in expressions)
{
var exprObj = new Expression(expression);
var result = exprObj.Evaluate(varibles);
Console.WriteLine("{0}: {1}", expression, result);
}
}
The and
operator has more priority than the or
, thus in the example above, false and true
are evaluated first.
A bitwise operator is an operator that acts on the binary representation of numeric types.
public static void Example3()
{
var varibles = new Dictionary<string, object>()
{
{ "a", 2 },
{ "b", 3 },
};
List<string> expressions = new List<string>()
{
"[a] >> [b]",
"[a] < [b]",
"[a] ^ [b]",
"[a] | [b]",
"[a] & [b]"
};
foreach (var expression in expressions)
{
var exprObj = new Expression(expression);
var result = exprObj.Evaluate(varibles);
Console.WriteLine("{0}: {1}", expression, result);
}
}
Comparison operators are used to comparing two or more operands. C# supports the following comparison operators.
The following example shows the usage of comparison operators.
public static void Example4()
{
var varibles = new Dictionary<string, object>()
{
{ "a", 10 },
{ "b", 5 },
};
List<string> expressions = new List<string>()
{
"[a] > [b]",
"[a] < [b]",
"[a] == [b]",
"[a] != [b]",
"[a] >= [b]",
"[a] <= [b]"
};
foreach (var expression in expressions)
{
var exprObj = new Expression(expression);
var result = exprObj.Evaluate(varibles);
Console.WriteLine("{0}: {1}", expression, result);
}
}