OperatorKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public enum class OperatorKind
public enum OperatorKind
type OperatorKind =
Public Enum OperatorKind
- Inheritance
-
OperatorKind
Fields
Name | Value | Description |
---|---|---|
ImplicitConversion | 0 | The name assigned to an implicit (widening) conversion. |
ExplicitConversion | 1 | The name assigned to an explicit (narrowing) conversion. |
Addition | 2 | The name assigned to the Addition operator. |
BitwiseAnd | 3 | The name assigned to the BitwiseAnd operator. |
BitwiseOr | 4 | The name assigned to the BitwiseOr operator. |
Decrement | 5 | The name assigned to the Decrement operator. |
Division | 6 | The name assigned to the Division operator. |
Equality | 7 | The name assigned to the Equality operator. |
ExclusiveOr | 8 | The name assigned to the ExclusiveOr operator. |
False | 9 | The name assigned to the False operator. |
GreaterThan | 10 | The name assigned to the GreaterThan operator. |
GreaterThanOrEqual | 11 | The name assigned to the GreaterThanOrEqual operator. |
Increment | 12 | The name assigned to the Increment operator. |
Inequality | 13 | The name assigned to the Inequality operator. |
LeftShift | 14 | The name assigned to the LeftShift operator. |
LessThan | 15 | The name assigned to the LessThan operator. |
LessThanOrEqual | 16 | The name assigned to the LessThanOrEqual operator. |
LogicalNot | 17 | The name assigned to the LogicalNot operator. |
Modulus | 18 | The name assigned to the Modulus operator. |
Multiply | 19 | The name assigned to the Multiply operator. |
OnesComplement | 20 | The name assigned to the OnesComplement operator. |
RightShift | 21 | The name assigned to the RightShift operator. |
Subtraction | 22 | The name assigned to the Subtraction operator. |
True | 23 | The name assigned to the True operator. |
UnaryNegation | 24 | The name assigned to the UnaryNegation operator. |
UnaryPlus | 25 | The name assigned to the UnaryPlus operator. |
UnsignedRightShift | 26 | The name assigned to the UnsignedRightShift operator. |