Decimal.LessThan(Decimal, 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
Параметры
- d1
- Decimal
Первое сравниваемое значение.
- d2
- Decimal
Второе сравниваемое значение.
Возвращаемое значение
Значение true
, если значение d1
меньше d2
; в противном случае — значение false
.
Комментарии
LessThanМетод определяет операцию оператора "меньше" для Decimal значений. Он включает следующий код:
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
Языки, которые не поддерживают пользовательские операторы, могут вызывать Compare метод. Они также могут вызывать LessThan метод напрямую, как показано в следующем примере.
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
Эквивалентным методом для этого оператора является Decimal.Compare(Decimal, Decimal)