StringToken.Inequality(StringToken, StringToken) Operator

Definition

Indicates whether two StringToken structures are not equal.

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

Parameters

a
StringToken

The StringToken to compare to b.

b
StringToken

The StringToken to compare to a.

Returns

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

Remarks

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

Applies to