Click or drag to resize
ListBaseTItem Property
The indexer must be overridden by the derived class to get and set values of the list at a particular index.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public abstract T this[
	int index
] { get; set; }

Parameters

index
Type: SystemInt32
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

Type: T
The item at the given index.

Implements

IListTItemInt32
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero or greater than or equal to Count.
See Also