PropertyToken.Inequality(PropertyToken, PropertyToken) Operator

Definition

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

Remarks

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

Applies to