C# Decimal LessThan

Description

Decimal LessThan returns a value indicating whether a specified Decimal is less than another specified Decimal.

Syntax

Decimal.LessThan has the following syntax.


public static bool operator <(
  decimal d1,
  decimal d2
)

Parameters

Decimal.LessThan has the following parameters.

  • d1 - The first value to compare.
  • d2 - The second value to compare.

Returns

Decimal.LessThan method returns true if d1 is less than d2; otherwise, false.

Example

The LessThan method defines the operation of the less than operator for Decimal values. It enables code such as the following:


using System;//from  w w w.jav  a  2  s. com

public class Example
{
   public static void Main()
   {
      Decimal number1 = 1.0699m;
      Decimal number2 = 1.0695m;
      Console.WriteLine("{0} < {1}: {2}", number1, 
                        number2, number1 < number2);

   }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version