Kinds of operators.
Namespace: Metalama.Framework.Code
Assembly: Metalama.Framework.dll
Syntax
[CompileTime]
public enum OperatorKind
Fields
Name | Description |
---|---|
Addition | Addition operator. |
BitwiseAnd | BitwiseAnd operator. |
BitwiseOr | BitwiseOr operator. |
Decrement | Decrement operator. |
Division | Division operator. |
Equality | Equality operator. |
ExclusiveOr | ExclusiveOr operator. |
ExplicitConversion | Explicit (narrowing) conversion. |
False | False operator. |
GreaterThan | GreaterThan operator. |
GreaterThanOrEqual | GreaterThanOrEqual operator. |
ImplicitConversion | Implicit (widening) conversion. |
Increment | Increment operator. |
Inequality | Inequality operator. |
LeftShift | LeftShift operator. |
LessThan | LessThan operator. |
LessThanOrEqual | LessThanOrEqual operator. |
LogicalNot | LogicalNot operator. |
Modulus | Modulus operator. |
Multiply | Multiply operator. |
None | Not an operator. |
OnesComplement | OnesComplement operator. |
RightShift | RightShift operator. |
Subtraction | Subtraction operator. |
True | True operator. |
UnaryNegation | UnaryNegation operator. |
UnaryPlus | UnaryPlus operator. |