Decimal::LessThanOrEqual Operator (Decimal, Decimal)
.NET Framework (current version)
Returns a value indicating whether a specified Decimal is less than or equal to another specified Decimal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- d1
-
Type:
System::Decimal
The first value to compare.
- d2
-
Type:
System::Decimal
The second value to compare.
The LessThanOrEqual method defines the operation of the less than or equal operator for Decimal values. It enables code such as the following:
Languages that do not support custom operators can call the Compare method instead. They may also be able to call the LessThanOrEqual 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_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
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: