DynamicInvokeMultiplicationOperatorT Method
Uses reflection to invoke the multiplication 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 MultiplicationOperator<T>(
T left,
T right
)
Public Shared Function MultiplicationOperator(Of T) (
left As T,
right As T
) As T
public:
generic<typename T>
static T MultiplicationOperator(
T left,
T right
)
static member MultiplicationOperator :
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.