Click or drag to resize
OrderedBagTItem Property
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.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public T this[
	int index
] { get; }

Parameters

index
Type: SystemInt32
The index to get the item by.

Return Value

Type: T
The item at the given index.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is less than zero or greater than or equal to Count.
Remarks
The indexer takes time O(log N), which N is the number of items in the set.
See Also