Decimal.GreaterThan(Decimal, Decimal) Operatore

Definizione

Restituisce un valore che indica se l'oggetto Decimal specificato è maggiore di un altro oggetto Decimal specificato.

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

Parametri

d1
Decimal

Primo valore da confrontare.

d2
Decimal

Secondo valore da confrontare.

Restituisce

Boolean

true se d1 è maggiore di d2; in caso contrario, false.

Commenti

Il GreaterThan metodo definisce l'operazione dell'operatore maggiore di per Decimal i valori. Abilita codice come il seguente:

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

I linguaggi che non supportano operatori personalizzati possono chiamare Compare invece il metodo . Possono anche essere in grado di chiamare direttamente GreaterThan il metodo , come illustrato nell'esempio seguente.

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

Il metodo equivalente per questo operatore è Decimal.Compare(Decimal, Decimal)

Si applica a

Vedi anche