TypeToken.Equality(TypeToken, TypeToken) Operator

Definition

Indicates whether two TypeToken structures are 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 ( = ) : 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 equal to b; otherwise, false.

Remarks

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

Applies to