SqlSingle.GreaterThan(SqlSingle, SqlSingle) Operador

Definição

Executa uma comparação lógica dos dois operandos SqlSingle para determinar se o primeiro é maior que o segundo.Performs a logical comparison of the two SqlSingle operands to determine whether the first is greater than the second.

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

Parâmetros

x
SqlSingle

Uma estrutura SqlSingle.A SqlSingle structure.

y
SqlSingle

Uma estrutura SqlSingle.A SqlSingle 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 SqlSingle for nula, o Value do SqlBoolean será Null.If either instance of SqlSingle is null, the Value of the SqlBoolean will be Null.

Comentários

O método equivalente para esse operador é SqlSingle.GreaterThan .The equivalent method for this operator is SqlSingle.GreaterThan.

Aplica-se a