Standard Operators
Available through the ExpressionConfiguration.StandardOperatorsDictionary constant:
Arithmetic operators
| Name | Description |
|---|---|
| - | The prefix minus operator, like in “-2” |
| + | The prefix minus operator, like in “+2” |
| - | The infix minus operator, like in “5-2” |
| + | The infix plus operator, like in “5+2” |
| * | The multiplication operator |
| / | The division operator |
| ^ | The power-of operator |
| % | The modulo operator (remainder) |
Boolean operators
| Name | Description |
|---|---|
| =, == | The equals operator |
| !=, <> | The not equals operator |
| ! | The prefix not operator, like in !a |
| > | The greater than operator |
| >= | The greater equals operator |
| < | The less than operator |
| <= | The less equals operator |
| && | The and operator |
| || | The or operator |