ReadOnlyListBaseTItem Property |
The get part of the indexer must be overridden by the derived class to get
values of the list at a particular index.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic virtual T this[
int index
] { get; set; }
public:
virtual property T default[int index] {
T get (int index);
void set (int index, T value);
}
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:
TThe item at the given index.
Implements
IListTItemInt32
Exceptions
See Also