Decimal.GreaterThan(Decimal, Decimal) Operador
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
public:
static bool operator >(System::Decimal d1, System::Decimal d2);
public:
static bool operator >(System::Decimal d1, System::Decimal d2) = System::Numerics::IComparisonOperators<System::Decimal, System::Decimal, bool>::op_GreaterThan;
public static bool operator >(decimal d1, decimal d2);
static member ( > ) : decimal * decimal -> bool
Public Shared Operator > (d1 As Decimal, d2 As Decimal) As Boolean
Parâmetros
- d1
- Decimal
O primeiro valor a comparar.
- d2
- Decimal
O segundo valor a comparar.
Devoluções
true se d1 for maior que d2; caso contrário, false.
Implementações
Observações
O GreaterThan método define a operação do operador maior de para Decimal valores. Permite código como o seguinte:
using System;
public class Example
{
public static void Main()
{
Decimal number1 = 16354.0699m;
Decimal number2 = 16354.0695m;
Console.WriteLine("{0} > {1}: {2}", number1,
number2, number1 > number2);
number1 = Decimal.Round(number1, 2);
number2 = Decimal.Round(number2, 2);
Console.WriteLine("{0} > {1}: {2}", number1,
number2, number1 > number2);
}
}
// The example displays the following output:
// 16354.0699 > 16354.0695: True
// 16354.07 > 16354.07: False
open System
let number1 = 16354.0699m
let number2 = 16354.0695m
printfn $"{number1} > {number2}: {number1 > number2}"
let rounded1 = Decimal.Round(number1, 2)
let rounded2 = Decimal.Round(number2, 2)
printfn $"{number1} > {number2}: {number1 > number2}"
// The example displays the following output:
// 16354.0699 > 16354.0695: True
// 16354.07 > 16354.07: False
Module Example
Public Sub Main()
Dim number1 As Decimal = 16354.0699d
Dim number2 As Decimal = 16354.0695d
Console.WriteLine("{0} > {1}: {2}", number1,
number2, number1 > number2)
number1 = Decimal.Round(number1, 2)
number2 = Decimal.Round(number2, 2)
Console.WriteLine("{0} > {1}: {2}", number1,
number2, number1 > number2)
End Sub
End Module
' The example displays the following output:
' 16354.0699 > 16354.0695: True
' 16354.07 > 16354.07: False
Linguagens que não suportam operadores personalizados podem chamar o Compare método em vez disso. Também podem ser capazes de chamar o GreaterThan método diretamente, como mostra o exemplo seguinte.
Module Example
Public Sub Main()
Dim number1 As Decimal = 16354.0699d
Dim number2 As Decimal = 16354.0695d
Console.WriteLine("{0} > {1}: {2}", number1, number2,
Decimal.op_GreaterThan(number1, number2))
number1 = Decimal.Round(number1, 2)
number2 = Decimal.Round(number2, 2)
Console.WriteLine("{0} > {1}: {2}", number1, number2,
Decimal.op_GreaterThan(number1, number2))
End Sub
End Module
' The example displays the following output:
' 16354.0699 > 16354.0695: True
' 16354.07 > 16354.07: False
O método equivalente para este operador é Decimal.Compare(Decimal, Decimal)