Decimal.GreaterThan(Decimal, Decimal) Operador
Definição
public:
static bool operator >(System::Decimal d1, System::Decimal d2);
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 ser comparado.The first value to compare.
- d2
- Decimal
O segundo valor a ser comparado.The second value to compare.
Retornos
true
caso d1
seja maior que d2
; do contrário, false
.true
if d1
is greater than d2
; otherwise, false
.
Comentários
O GreaterThan método define a operação do operador maior que para Decimal valores.The GreaterThan method defines the operation of the greater than operator for Decimal values. Ele permite que o código seja o seguinte:It enables code such as the following:
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
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 dão suporte a operadores personalizados podem chamar o método Compare em vez disso.Languages that do not support custom operators can call the Compare method instead. Eles também podem ser capazes de chamar o GreaterThan método diretamente, como mostra o exemplo a seguir.They may also be able to call the GreaterThan method directly, as the following example shows.
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 esse operador é Decimal.Compare(Decimal, Decimal)The equivalent method for this operator is Decimal.Compare(Decimal, Decimal)