SqlInt16.LessThanOrEqual(SqlInt16, SqlInt16) Operador

Definição

Compara duas estruturas SqlInt16 para determinar se a primeira é menor ou igual à segunda.Compares two SqlInt16 structures to determine whether the first is less than or equal to the second.

public:
 static System::Data::SqlTypes::SqlBoolean operator <=(System::Data::SqlTypes::SqlInt16 x, System::Data::SqlTypes::SqlInt16 y);
public static System.Data.SqlTypes.SqlBoolean operator <= (System.Data.SqlTypes.SqlInt16 x, System.Data.SqlTypes.SqlInt16 y);
static member ( <= ) : System.Data.SqlTypes.SqlInt16 * System.Data.SqlTypes.SqlInt16 -> System.Data.SqlTypes.SqlBoolean
Public Shared Operator <= (x As SqlInt16, y As SqlInt16) As SqlBoolean

Parâmetros

x
SqlInt16

Uma estrutura SqlInt16.A SqlInt16 structure.

y
SqlInt16

Uma estrutura SqlInt16.A SqlInt16 structure.

Retornos

SqlBoolean

Um SqlBoolean que será True se a primeira instância for menor ou igual à segunda instância.A SqlBoolean that is True if the first instance is less than or equal to the second instance. Caso contrário, False.Otherwise, False. Se uma das instâncias de SqlInt16 for nula, o Value do SqlBoolean será Null.If either instance of SqlInt16 is null, the Value of the SqlBoolean will be Null.

Comentários

O método equivalente para esse operador é SqlInt16.LessThanOrEqual(SqlInt16, SqlInt16) .The equivalent method for this operator is SqlInt16.LessThanOrEqual(SqlInt16, SqlInt16).

Aplica-se a