DynamicInvokeInequalityOperatorT Method

Uses reflection to invoke the inequality for T using left and right as the parameters, returning the result of the operation.

Definition

Namespace: Jodosoft.Primitives
Assembly: Jodosoft.Primitives (in Jodosoft.Primitives.dll) Version: 2.0
public static bool InequalityOperator<T>(
	T left,
	T right
)

Parameters

left  T
The left value to pass to operator.
right  T
The right value to pass to the operator.

Type Parameters

T
The type for which the operator is defined.

Return Value

Boolean
The result of invoking the operator.

See Also