SqlInt64.Equals Método

Definição

Executa uma comparação lógica de duas estruturas para determinar se elas são iguais.Performs a logical comparison of two structures to determine whether they are equal.

Sobrecargas

Equals(Object)

Compara o parâmetro de objeto fornecido com a propriedade Value do objeto SqlInt64.Compares the supplied object parameter to the Value property of the SqlInt64 object.

Equals(SqlInt64, SqlInt64)

Executa uma comparação lógica dos dois parâmetros SqlInt64 para determinar se eles são iguais.Performs a logical comparison of the two SqlInt64 parameters to determine whether they are equal.

Equals(Object)

Compara o parâmetro de objeto fornecido com a propriedade Value do objeto SqlInt64.Compares the supplied object parameter to the Value property of the SqlInt64 object.

public:
 override bool Equals(System::Object ^ value);
public override bool Equals (object value);
public override bool Equals (object? value);
override this.Equals : obj -> bool
Public Overrides Function Equals (value As Object) As Boolean

Parâmetros

value
Object

O objeto a ser comparado.The object to be compared.

Retornos

Boolean

true se o objeto for uma instância de SqlInt64 e os dois forem iguais; caso contrário false.true if object is an instance of SqlInt64 and the two are equal; otherwise false.

Aplica-se a

Equals(SqlInt64, SqlInt64)

Executa uma comparação lógica dos dois parâmetros SqlInt64 para determinar se eles são iguais.Performs a logical comparison of the two SqlInt64 parameters to determine whether they are equal.

public:
 static System::Data::SqlTypes::SqlBoolean Equals(System::Data::SqlTypes::SqlInt64 x, System::Data::SqlTypes::SqlInt64 y);
public static System.Data.SqlTypes.SqlBoolean Equals (System.Data.SqlTypes.SqlInt64 x, System.Data.SqlTypes.SqlInt64 y);
static member Equals : System.Data.SqlTypes.SqlInt64 * System.Data.SqlTypes.SqlInt64 -> System.Data.SqlTypes.SqlBoolean
Public Shared Function Equals (x As SqlInt64, y As SqlInt64) As SqlBoolean

Parâmetros

x
SqlInt64

Uma estrutura SqlInt64.A SqlInt64 structure.

y
SqlInt64

Uma estrutura SqlInt64.A SqlInt64 structure.

Retornos

SqlBoolean

true se os dois valores forem iguais.true if the two values are equal. Caso contrário, false.Otherwise, false. Se uma das instâncias for nula, o SqlInt64 será nulo.If either instance is null, then the SqlInt64 will be null.

Aplica-se a