StringToken.Equality(StringToken, StringToken) Operator

Definition

Indicates whether two StringToken structures are equal.

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

Parameters

a
StringToken

The StringToken to compare to b.

b
StringToken

The StringToken to compare to a.

Returns

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

Remarks

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

Applies to