TypeToken.Inequality(TypeToken, TypeToken) Operator

Definition

Indicates whether two TypeToken structures are not equal.

public:
 static bool operator !=(System::Reflection::Emit::TypeToken a, System::Reflection::Emit::TypeToken b);
public static bool operator != (System.Reflection.Emit.TypeToken a, System.Reflection.Emit.TypeToken b);
static member op_Inequality : System.Reflection.Emit.TypeToken * System.Reflection.Emit.TypeToken -> bool
Public Shared Operator != (a As TypeToken, b As TypeToken) As Boolean

Parameters

a
TypeToken

The TypeToken to compare to b.

b
TypeToken

The TypeToken to compare to a.

Returns

true if a is not equal to b; otherwise, false.

Remarks

The equivalent method for this operator is TypeToken.Equals(TypeToken).

Applies to