Click or drag to resize

DayRangeContains(DayRange) Method

Returns true if the specified DayRange is fully contained within this DayRange; false otherwise.

Namespace: DegreeDays.Time
Assembly: DegreeDays (in DegreeDays.dll) Version: 1.4
Syntax
public bool Contains(
	DayRange testRange
)

Parameters

testRange  DayRange
The DayRange to test for containment within this DayRange.

Return Value

Boolean
true if the first day of testRange is equal to or after the first day of this DayRange, and the last day of testRange is equal to or before the last day of this DayRange; false otherwise.
See Also