OperatorType EnumerationNReflect
Enumerates the types of operators.

Namespace: NReflect.NRMembers
Assembly: NReflect (in NReflect.dll) Version: 0.9.3.0 (0.9.3.0)
Syntax

public enum OperatorType
Members

  Member nameValueDescription
UnaryPlus0 The unaryplus operator.
UnaryNegation1 The unary negation operator.
LogicalNot2 The logical not operator.
OnesComplement3 The ones complement operator.
Increment4 The increment operator.
Decrement5 The decrement operator.
True6 The true operator.
False7 The false operator.
Addition8 The addition operator.
Subtraction9 The subtraction operator.
Multiply10 The multiply operator.
Division11 The division operator.
Modulus12 The modulus operator.
BitwiseAnd13 The bitwise and operator.
BitwiseOr14 The bitwise or operator.
ExclusiveOr15 The exclusive or operator.
LeftShift16 The left shift operator.
RightShift17 The right shift operator.
Equality18 The equality operator.
Inequality19 The inequality operator.
LessThan20 The less than operator.
GreaterThan21 The greater than operator.
LessThanOrEqual22 The less than or equal operator.
GreaterThanOrEqual23 The greater than or equal operator.
Implicit24 The implicit conversion operator.
Explicit25 The explicit conversion operator.
Unknown-1 The type of the operator is unknown.
See Also