Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

ListBase<(Of <(<'T>)>)>..::..Item Property

The indexer must be overridden by the derived class to get and set values of the list at a particular index.

Namespace:  Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax


public T this[
	int index
] { }
Public Default Property Item ( _
	index As Integer _
) As T
public:
property T default[int^ index] {
}

Parameters

index
Type: Int32
The index in the list to get or set an item at. The first item in the list has index 0, and the last has index Count-1.

Return Value

The item at the given index.

Exceptions


ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero or greater than or equal to Count.