Click or drag to resize

DayRange Constructor

Constructs a DayRange that starts on the specified first day and ends on the specified last day.

Namespace: DegreeDays.Time
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
public DayRange(
	Day first,
	Day last
)

Parameters

first  Day
The first day that the DayRange should include.
last  Day
The last day that the DayRange should include. Must be equal to or later than first.
Exceptions
ExceptionCondition
ArgumentExceptionfirst is after last.
Remarks

If first and last represent the same day, the range will cover that day only.

See Also