public enum OperatorKind

assembly RefDocGen
namespace RefDocGen.CodeElements.Members

Represents the kind of an operator.

Members

UnaryPlus = 0 #
Represents the unary plus operator.
UnaryMinus = 1 #
Represents the unary minus operator.
LogicalNegation = 2 #
Represents the logical negation operator.
BitwiseComplement = 3 #
Represents the bitwise complement operator.
Increment = 4 #
Represents the increment operator.
Decrement = 5 #
Represents the decrement operator.
True = 6 #
Represents the true operator for conditional evaluation.
False = 7 #
Represents the false operator for conditional evaluation.
Addition = 8 #
Represents the addition operator.
Subtraction = 9 #
Represents the subtraction operator.
Multiplication = 10 #
Represents the multiplication operator.
Division = 11 #
Represents the division operator.
Remainder = 12 #
Represents the remainder operator.
BitwiseAnd = 13 #
Represents the bitwise AND operator.
BitwiseOr = 14 #
Represents the bitwise OR operator.
ExclusiveOr = 15 #
Represents the bitwise XOR operator.
LeftShift = 16 #
Represents the left shift operator.
RightShift = 17 #
Represents the right shift operator.
UnsignedRightShift = 18 #
Represents the unsigned right shift operator.
Equality = 19 #
Represents the equality operator.
Inequality = 20 #
Represents the inequality operator.
LessThan = 21 #
Represents the less-than operator.
GreaterThan = 22 #
Represents the greater-than operator.
LessThanOrEqual = 23 #
Represents the less-than-or-equal operator.
GreaterThanOrEqual = 24 #
Represents the greater-than-or-equal operator.
ExplicitConversion = 25 #
Represents the explicit conversion operator.
ImplicitConversion = 26 #
Represents the implicit conversion operator.