Enumerates the types of operators.
Namespace: NReflect.NRMembersAssembly: NReflect (in NReflect.dll) Version: 0.9.3.0 (0.9.3.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
UnaryPlus | 0 | The unaryplus operator. | |
UnaryNegation | 1 | The unary negation operator. | |
LogicalNot | 2 | The logical not operator. | |
OnesComplement | 3 | The ones complement operator. | |
Increment | 4 | The increment operator. | |
Decrement | 5 | The decrement operator. | |
True | 6 | The true operator. | |
False | 7 | The false operator. | |
Addition | 8 | The addition operator. | |
Subtraction | 9 | The subtraction operator. | |
Multiply | 10 | The multiply operator. | |
Division | 11 | The division operator. | |
Modulus | 12 | The modulus operator. | |
BitwiseAnd | 13 | The bitwise and operator. | |
BitwiseOr | 14 | The bitwise or operator. | |
ExclusiveOr | 15 | The exclusive or operator. | |
LeftShift | 16 | The left shift operator. | |
RightShift | 17 | The right shift operator. | |
Equality | 18 | The equality operator. | |
Inequality | 19 | The inequality operator. | |
LessThan | 20 | The less than operator. | |
GreaterThan | 21 | The greater than operator. | |
LessThanOrEqual | 22 | The less than or equal operator. | |
GreaterThanOrEqual | 23 | The greater than or equal operator. | |
Implicit | 24 | The implicit conversion operator. | |
Explicit | 25 | The explicit conversion operator. | |
Unknown | -1 | The type of the operator is unknown. |
See Also