ArrayWithOffset.Inequality(ArrayWithOffset, ArrayWithOffset) Operador

Definición

Determina si dos objetos ArrayWithOffset especificados tienen valores distintos.

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

Parámetros

a
ArrayWithOffset

Objeto ArrayWithOffset que se va a comparar con el parámetro b.

b
ArrayWithOffset

Objeto ArrayWithOffset que se va a comparar con el parámetro a.

Devoluciones

true si el valor de a es distinto que el valor de b; en caso contrario, false.

Comentarios

El método equivalente para este operador es ArrayWithOffset.Equals(ArrayWithOffset).

Se aplica a