Label.Inequality(Label, Label) Operator

Definition

Indicates whether two Label structures are not equal.

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

Parameters

a
Label

The Label to compare to b.

b
Label

The Label to compare to a.

Returns

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

Remarks

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

Applies to