SqlInt16.GreaterThan(SqlInt16, SqlInt16) Operador

Definição

Compara duas instâncias de SqlInt16 para determinar se a primeira é maior que a segunda.Compares two instances of SqlInt16 to determine whether the first is greater than 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 maior do que a segunda instância.A SqlBoolean that is True if the first instance is greater than 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.GreaterThan(SqlInt16, SqlInt16) .The equivalent method for this operator is SqlInt16.GreaterThan(SqlInt16, SqlInt16).

Aplica-se a