EventToken.Inequality(EventToken, EventToken) Operator

Definition

Indicates whether two EventToken structures are not 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 op_Inequality : 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 not equal to b; otherwise, false.

Remarks

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

Applies to