GCHandle.Inequality(GCHandle, GCHandle) Operador

Definição

Devolve um valor que indica se dois GCHandle objetos não são iguais.

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

Parâmetros

a
GCHandle

Um GCHandle objeto para comparar com o b parâmetro.

b
GCHandle

Um GCHandle objeto para comparar com o a parâmetro.

Devoluções

true se os a parâmetros e b não forem iguais; caso contrário, false.

Observações

O método equivalente para este operador é GCHandle.Equals.

Aplica-se a