Gets or sets a DateTime at particular index.

Namespace:  BeeMobile.MonthCalendar
Assembly:  BeeMobile.MonthCalendar.CF35 (in BeeMobile.MonthCalendar.CF35.dll) Version: 3.5.0.1

Syntax

C#
public DateTime this[
	int index
] { get; set; }
Visual Basic (Declaration)
Public Default Property Item ( _
	index As Integer _
) As DateTime
Visual C++
public:
property DateTime default[int index] {
	DateTime get (int index);
	void set (int index, DateTime value);
}

Parameters

index
Type: System..::.Int32
Index of a DateTime to get or set.

Return Value

DateTime at corresponding index.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeException This exception is thrown if the provided index does not fall within the range of valid values.

See Also