Click or drag to resize

DateRangeLessThan Operator

Determines whether one DateRange is less than another.

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.0.8475.0
Syntax
C#
public static bool operator <(
	DateRange a,
	DateRange b
)

Parameters

a  DateRange
The first DateRange.
b  DateRange
The second DateRange.

Return Value

Boolean
true if a is less than b; otherwise, false.
Remarks
This operator returns true when:

The Upper and Lower members of a are less than those members of b

- or -

The Upper member of a is equal to the Lower member of b but the Lower member of a is less than both

See Also