Decimal.LessThan(Decimal, Decimal) Operator

Definicja

Zwraca wartość wskazującą, czy Decimal określona wartość jest mniejsza niż określona przez inną wartość Decimal .

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

Parametry

d1
Decimal

Pierwsza wartość do porównania.

d2
Decimal

Druga wartość do porównania.

Zwraca

Boolean

true , d1 jeśli jest mniejsze niż ; w przeciwnym razie d2 false .

Uwagi

Metoda LessThan definiuje operację operatora mniejsze niż dla Decimal wartości. Umożliwia stosowanie kodu takiego jak następujący:

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: False
//       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: False
'       16354.07 < 16354.07: False

Języki, które nie obsługują operatorów niestandardowych, mogą zamiast tego wywołać Compare metodę . Mogą również mieć możliwość bezpośredniego wywołania LessThan metody, jak pokazano w poniższym przykładzie.

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_LessThan(number1, number2))

      number1 = Decimal.Round(number1, 2)
      number2 = Decimal.Round(number2, 2)
      Console.WriteLine("{0} < {1}: {2}", number1, number2, 
                        Decimal.op_LessThan(number1, number2))
   End Sub
End Module
' The example displays the following output:
'       16354.0699 < 16354.0695: False
'       16354.07 < 16354.07: False

Równoważna metoda dla tego operatora to Decimal.Compare(Decimal, Decimal)

Dotyczy

Zobacz też