DynamicInvokeInequalityOperatorT Method
Uses reflection to invoke the inequality for T using
left and right as the parameters, returning the result of the operation.
Namespace: Jodosoft.PrimitivesAssembly: Jodosoft.Primitives (in Jodosoft.Primitives.dll) Version: 2.0
public static bool InequalityOperator<T>(
T left,
T right
)
Public Shared Function InequalityOperator(Of T) (
left As T,
right As T
) As Boolean
public:
generic<typename T>
static bool InequalityOperator(
T left,
T right
)
static member InequalityOperator :
left : 'T *
right : 'T -> bool
- 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.
BooleanThe result of invoking the operator.