DynamicInvokeDivisionOperatorT Method
Uses reflection to invoke the division operator for
T using
left and
right as the parameters. 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 DivisionOperator<T>(
T left,
T right
)
Public Shared Function DivisionOperator(Of T) (
left As T,
right As T
) As T
public:
generic<typename T>
static T DivisionOperator(
T left,
T right
)
static member DivisionOperator :
left : 'T *
right : 'T -> 'T
- left T
- The left value to pass to operator.
- right T
- The right value to pass to the operator.
- T
- The type for which the operator is defined.
TThe result of invoking the operator.