DynamicInvokeDecrementOperatorT Method
Uses reflection to invoke the decrement operator for
T using
value as the parameter. Returns the result of the operation
or throws an
InvalidOperationException if no such operator is defined.
Namespace: Jodosoft.PrimitivesAssembly: Jodosoft.Primitives (in Jodosoft.Primitives.dll) Version: 2.0
public static T DecrementOperator<T>(
T value
)
Public Shared Function DecrementOperator(Of T) (
value As T
) As T
public:
generic<typename T>
static T DecrementOperator(
T value
)
static member DecrementOperator :
value : 'T -> 'T
- value T
- The value to pass to operator.
- T
- The type for which the operator is defined.
TThe result of invoking the operator.