OpCode.Inequality(OpCode, OpCode) Operator

Definition

Indicates whether two OpCode structures are not equal.

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

Parameters

a
OpCode

The OpCode to compare to b.

b
OpCode

The OpCode to compare to a.

Returns

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

Remarks

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

Applies to