Binary.Inequality(Binary, Binary) Operador
Definição
Descreve a relação de desigualdade entre dois objetos binários.Describes the inequality relationship between two binary objects.
public:
static bool operator !=(System::Data::Linq::Binary ^ binary1, System::Data::Linq::Binary ^ binary2);
public static bool operator != (System.Data.Linq.Binary binary1, System.Data.Linq.Binary binary2);
static member op_Inequality : System.Data.Linq.Binary * System.Data.Linq.Binary -> bool
Public Shared Operator != (binary1 As Binary, binary2 As Binary) As Boolean
Parâmetros
- binary1
- Binary
O primeiro objeto binário.The first binary object.
- binary2
- Binary
O segundo objeto binário.The second binary object.
Retornos
true se os objetos binários não forem iguais; caso contrário, false.true if the binary objects are not equal; otherwise false.
Comentários
Retorna false se ambos forem null , mas retorna true se for null .Returns false if both are null, but returns true if either is null.