GCHandle.Inequality(GCHandle, GCHandle) Operador

Definição

Retorna um valor que indica se dois objetos GCHandle 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 objeto GCHandle a ser comparado com o parâmetro b.

b
GCHandle

Um objeto GCHandle a ser comparado com o parâmetro a.

Retornos

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

Comentários

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

Aplica-se a