BinaryExpressionType 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.
The types of scalar expressions that have two expressions as children.
[System.Serializable]
public enum BinaryExpressionType
[<System.Serializable>]
type BinaryExpressionType =
Public Enum BinaryExpressionType
- Inheritance
-
BinaryExpressionType
- Attributes
Fields
Name | Value | Description |
---|---|---|
Add | 0 | The '+' character, addition. |
Subtract | 1 | The '-' character, subtraction. |
Multiply | 2 | The '*' character, multiplication. |
Divide | 3 | The '/' character, division. |
Modulo | 4 | The '%' character, returns the integer remainder of a division. |
BitwiseAnd | 5 | The '&' character, bitwise and. |
BitwiseOr | 6 | The '|' character, bitwise or. |
BitwiseXor | 7 | The '^' character, bitwise exclusive or. |
LeftShift | 8 | The '<<' character, left shift. |
RightShift | 9 | The '>>' character, right shift. |
Concat | 10 | The '||' character, concatenation. |