Operatable |
public abstract class OperatableObject
The OperatableObject type exposes the following members.
| Name | Description | |
|---|---|---|
| OperatableObject | Initializes a new instance of the OperatableObject class |
| Name | Description | |
|---|---|---|
| Equals | Determines whether the specified object is equal to the current object. (Overrides ObjectEquals(Object)) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
| GetHashCode | Serves as the default hash function. (Overrides ObjectGetHashCode) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| ToString | Returns a string that represents the current object. (Inherited from Object) | |
| vop_Addition | Tries to apply addition with the specified right-hand operand. | |
| vop_Addition_Rev | Tries to apply addition with the specified left-hand operand. | |
| vop_And | Tries to apply bitwise/logical AND with the specified right-hand operand. | |
| vop_And_Rev | Tries to apply bitwise/logical AND with the specified left-hand operand. | |
| vop_Complement | Tries to apply the bitwise complement operator. | |
| vop_Decrement | Tries to apply the decrement operator. | |
| vop_Division | Tries to apply division with the specified right-hand operand. | |
| vop_Division_Rev | Tries to apply division with the specified left-hand operand. | |
| vop_Equal | Tries to compare for equality with the specified operand. | |
| vop_Equal_Rev | Tries to compare for equality with the specified operand in reversed order. | |
| vop_False | Tries to evaluate the instance for the false operator. | |
| vop_Greater | Tries to compare whether this instance is greater than the specified operand. | |
| vop_Greater_Rev | Tries to compare whether this instance is less than the specified operand in reversed order. | |
| vop_GreaterOrEqual | Tries to compare whether this instance is greater than or equal to the specified operand. | |
| vop_GreaterOrEqual_Rev | Tries to compare whether this instance is less than or equal to the specified operand in reversed order. | |
| vop_Increment | Tries to apply the increment operator. | |
| vop_Lesser | Tries to compare whether this instance is less than the specified operand. | |
| vop_Lesser_Rev | Tries to compare whether this instance is greater than the specified operand in reversed order. | |
| vop_LesserOrEqual | Tries to compare whether this instance is less than or equal to the specified operand. | |
| vop_LesserOrEqual_Rev | Tries to compare whether this instance is greater than or equal to the specified operand in reversed order. | |
| vop_Minus | Tries to apply the unary minus operator. | |
| vop_Modulo | Tries to apply modulo with the specified right-hand operand. | |
| vop_Modulo_Rev | Tries to apply modulo with the specified left-hand operand. | |
| vop_Multiplication | Tries to apply multiplication with the specified right-hand operand. | |
| vop_Multiplication_Rev | Tries to apply multiplication with the specified left-hand operand. | |
| vop_Not | Tries to apply the logical negation operator. | |
| vop_NotEqual | Tries to compare for inequality with the specified operand. | |
| vop_NotEqual_Rev | Tries to compare for inequality with the specified operand in reversed order. | |
| vop_Or | Tries to apply bitwise/logical OR with the specified right-hand operand. | |
| vop_Or_Rev | Tries to apply bitwise/logical OR with the specified left-hand operand. | |
| vop_Plus | Tries to apply the unary plus operator. | |
| vop_ShiftLeft | Tries to apply a left shift with the specified operand. | |
| vop_ShiftLeft_Rev | Tries to apply a reversed left shift with the specified operand. | |
| vop_ShiftRight | Tries to apply a right shift with the specified operand. | |
| vop_ShiftRight_Rev | Tries to apply a reversed right shift with the specified operand. | |
| vop_Subtraction | Tries to apply subtraction with the specified right-hand operand. | |
| vop_Subtraction_Rev | Tries to apply subtraction with the specified left-hand operand. | |
| vop_True | Tries to evaluate the instance for the true operator. | |
| vop_Xor | Tries to apply XOR with the specified right-hand operand. | |
| vop_Xor_Rev | Tries to apply XOR with the specified left-hand operand. |
| Name | Description | |
|---|---|---|
| Addition(Object, OperatableObject) | Applies the binary addition operator with operands in reversed order. | |
| Addition(OperatableObject, Object) | Applies the binary addition operator. | |
| BitwiseAnd(OperatableObject, Object) | Applies the binary AND operator. | |
| BitwiseOr(OperatableObject, Object) | Applies the binary OR operator. | |
| Decrement(OperatableObject) | Applies decrement. | |
| Division(OperatableObject, Object) | Applies the binary division operator. | |
| Equality(OperatableObject, Object) | Applies the equality operator. | |
| ExclusiveOr(OperatableObject, Object) | Applies the binary XOR operator. | |
| False(OperatableObject) | Evaluates the instance for boolean false. | |
| GreaterThan(OperatableObject, Object) | Applies the greater-than operator. | |
| GreaterThanOrEqual(OperatableObject, Object) | Applies the greater-than-or-equal operator. | |
| Increment(OperatableObject) | Applies increment. | |
| Inequality(OperatableObject, Object) | Applies the inequality operator. | |
| LeftShift(OperatableObject, Int32) | Applies the left-shift operator. | |
| LessThan(OperatableObject, Object) | Applies the less-than operator. | |
| LessThanOrEqual(OperatableObject, Object) | Applies the less-than-or-equal operator. | |
| LogicalNot(OperatableObject) | Applies logical negation. | |
| Modulus(OperatableObject, Object) | Applies the binary modulo operator. | |
| Multiply(OperatableObject, Object) | Applies the binary multiplication operator. | |
| OnesComplement(OperatableObject) | Applies bitwise complement. | |
| RightShift(OperatableObject, Int32) | Applies the right-shift operator. | |
| Subtraction(OperatableObject, Object) | Applies the binary subtraction operator. | |
| True(OperatableObject) | Evaluates the instance for boolean true. | |
| UnaryNegation(OperatableObject) | Applies unary minus. | |
| UnaryPlus(OperatableObject) | Applies unary plus. |