SqlInt16.GreaterThan(SqlInt16, SqlInt16) Operador
Definição
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
Retornos
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).