Creates an index that contains the specified date range.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Index<DateTime> CreateDateRange(
DateTime startDate,
DateTime endDate
)
Public Shared Function CreateDateRange (
startDate As DateTime,
endDate As DateTime
) As Index(Of DateTime)
public:
static Index<DateTime>^ CreateDateRange(
DateTime startDate,
DateTime endDate
)
static member CreateDateRange :
startDate : DateTime *
endDate : DateTime -> Index<DateTime>
Parameters
- startDate
- Type: SystemDateTime
The first date in the range. - endDate
- Type: SystemDateTime
The last date in the range.
Return Value
Type:
IndexDateTimeAn index containing all days between
startDate and
endDate.
Reference