Type.Inequality(Type, Type) Operador

Definición

Indica si dos objetos Type no son iguales.

public:
 static bool operator !=(Type ^ left, Type ^ right);
public static bool operator != (Type? left, Type? right);
public static bool operator != (Type left, Type right);
static member op_Inequality : Type * Type -> bool
Public Shared Operator != (left As Type, right As Type) As Boolean

Parámetros

left
Type

Primer objeto que se va a comparar.

right
Type

Segundo objeto que se va a comparar.

Devoluciones

Es true si left no es igual a right; en caso contrario, es false.

Se aplica a