[]
Initializes a new instance of the CalendarDateRange class.
public CalendarDateRange()
Public Sub New()
Initializes a new instance of the CalendarDateRange class with a single date.
public CalendarDateRange(DateTime day)
Public Sub New(day As Date)
Type | Name | Description |
---|---|---|
DateTime | day | The date to add, which means the Start and End of this CalendarDateRange instance are the same day. |
Initializes a new instance of the CalendarDateRange class with a range of dates.
public CalendarDateRange(DateTime start, DateTime end)
Public Sub New(start As Date, [end] As Date)
Type | Name | Description |
---|---|---|
DateTime | start | The start of the range to be represented. |
DateTime | end | The end of the range to be represented. |
Initializes a new instance of the CalendarDateRange class with same data.
public CalendarDateRange(CalendarDateRange source)
Public Sub New(source As CalendarDateRange)
Type | Name | Description |
---|---|---|
CalendarDateRange | source |