PropertyToken.Equality(PropertyToken, PropertyToken) Operator

Definition

Indicates whether two PropertyToken structures are equal.

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

Parameters

a
PropertyToken

The PropertyToken to compare to b.

b
PropertyToken

The PropertyToken to compare to a.

Returns

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

Remarks

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

Applies to