Enum BinaryOperator
Represents binary operator.
Namespace: DotNext.Reflection
Assembly: DotNext.Reflection.dll
Syntax
public enum BinaryOperator : int
  Fields
| Name | Description | 
|---|---|
| Add | An addition operation, such as a + b, without overflow checking.  | 
      
| AddChecked | An addition operation, such as (a + b), with overflow checking.  | 
      
| And | a & b  | 
      
| Divide | a / b  | 
      
| Equal | a == b  | 
      
| GreaterThan | a > b  | 
      
| GreaterThanOrEqual | a >= b  | 
      
| LeftShift | a << b  | 
      
| LessThan | a < b  | 
      
| LessThanOrEqual | a <= b  | 
      
| Modulo | a % b  | 
      
| Multiply | A multiply operation, such as (a * b), without overflow checking.  | 
      
| MultiplyChecked | A multiply operation, such as (a * b), with overflow checking.  | 
      
| NotEqual | a != b  | 
      
| Or | a | b  | 
      
| Power | POW(a, b)  | 
      
| RightShift | a >> b  | 
      
| Subtract | An subtraction operation, such as (a - b), without overflow checking.  | 
      
| SubtractChecked | A subtraction operation, such as (a - b), with overflow checking.  | 
      
| Xor | a ^ b  |