DynamicInvokeBitwiseComplementOperatorT Method

Uses reflection to invoke the bitwise complement operator for T using value as the parameter. Returns the result of the operation or throws an InvalidOperationException if no such operator is defined.

Definition

Namespace: Jodosoft.Primitives
Assembly: Jodosoft.Primitives (in Jodosoft.Primitives.dll) Version: 2.0
public static T BitwiseComplementOperator<T>(
	T value
)

Parameters

value  T
The value to pass to operator.

Type Parameters

T
The type for which the operator is defined.

Return Value

T
The result of invoking the operator.

See Also