EventToken.Equality(EventToken, EventToken) Operator

Definition

Indicates whether two EventToken structures are equal.

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

Parameters

a
EventToken

The EventToken to compare to b.

b
EventToken

The EventToken to compare to a.

Returns

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

Remarks

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

Applies to