[]
Represents the abstract base class for defining binary operators.
public abstract class BinaryOperatorInfo : OperatorInfo
Public MustInherit Class BinaryOperatorInfo
Inherits OperatorInfo
| Name | Description |
|---|---|
| BinaryOperatorInfo() |
| Name | Description |
|---|---|
| AddOperator | Represents an instance of the binary addition operator. |
| ConcatenateOperator | Represents an instance of the binary concatenate operator. |
| DivideOperator | Represents an instance of the binary division operator. |
| EqualOperator | Represents an instance of the binary equals operator. |
| ExponentOperator | Represents an instance of the binary exponent operator. |
| GreaterThanOperator | Represents an instance of the binary "greater than" operator. |
| GreaterThanOrEqualOperator | Represents an instance of the binary "greater than or equals" operator. |
| IntersectOperator | Represents an instance of the binary "Intersect" operator. |
| LessThanOperator | Represents an instance of the binary "less than" operator. |
| LessThanOrEqualOperator | Represents an instance of the binary "less than or equals" operator. |
| MultiplyOperator | Represents an instance of the binary multiplication operator. |
| NotEqualOperator | Represents an instance of the binary "not equals" operator. |
| SubtractOperator | Represents an instance of the binary subtraction operator. |
| UnionOperator | Represents an instance of the binary "Union" operator. |
| Name | Description |
|---|---|
| Evaluate(object, object) | Returns the result of the operator applied to the operands. |