Bridge

Decimal..::..LessThan Operator

Returns a value indicating whether a specified Decimal is less than another specified Decimal.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


public static bool operator <(
	decimal d1,
	decimal d2
)
Public Shared Operator < ( _
	d1 As Decimal, _
	d2 As Decimal _
) As Boolean
public:
static bool^ operator <(
	Decimal^ d1, 
	Decimal^ d2
)

Parameters

d1
Type: System..::..Decimal
The first value to compare.
d2
Type: System..::..Decimal
The second value to compare.

Return Value

true if d1 is less than d2; otherwise, false.