Decimal.LessThanOrEqual(Decimal, Decimal) Operatör
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
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_LessThanOrEqual;
public static bool operator <= (decimal d1, decimal d2);
static member ( <= ) : decimal * decimal -> bool
Public Shared Operator <= (d1 As Decimal, d2 As Decimal) As Boolean
Parametreler
- d1
- Decimal
Karşılaştırılacak ilk değer.
- d2
- Decimal
Karşılaştırılacak ikinci değer.
Döndürülenler
true
küçük veya buna eşitse d1
d2
; değilse, false
.
Uygulamalar
Açıklamalar
yöntemi, LessThanOrEqual değerler için Decimal less than veya equal işlecinin işlemini tanımlar. Bu, aşağıdaki gibi bir kod sağlar:
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: True
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 $"{rounded1} <= {rounded2}: {rounded1 <= rounded2}"
// The example displays the following output:
// 16354.0699 <= 16354.0695: False
// 16354.07 <= 16354.07: True
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: True
Özel işleçleri desteklemeyen diller bunun yerine yöntemini çağırabilir Compare . Aşağıdaki örnekte gösterildiği gibi yöntemini doğrudan çağırabilirler LessThanOrEqual .
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_LessThanOrEqual(number1, number2))
number1 = Decimal.Round(number1, 2)
number2 = Decimal.Round(number2, 2)
Console.WriteLine("{0} <= {1}: {2}", number1, number2,
Decimal.op_LessThanOrEqual(number1, number2))
End Sub
End Module
' The example displays the following output:
' 16354.0699 >= 16354.0695: False
' 16354.07 >= 16354.07: True
Bu işleç için eşdeğer yöntem şudur: Decimal.Compare(Decimal, Decimal)