Get the item by its index in the sorted order. The smallest item has index 0,
the next smallest item has index 1, and the largest item has index Count-1.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic T this[
int index
] { get; }
public:
property T default[int index] {
T get (int index);
}
Parameters
- index
- Type: SystemInt32
The index to get the item by.
Return Value
Type:
TThe item at the given index.
Exceptions
RemarksThe indexer takes time O(log N), which N is the number of items in
the set.
See Also