Click or drag to resize

DateRangeGreaterThan Operator

Determines whether one DateRange is greater 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 greater than b; otherwise, false.
Remarks
This operator returns true when:

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

- or -

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

See Also