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