Property Item
Item[Int32]
= the size of the collection.
Declaration
public T this[int i] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | i | the index to lookup |
Property Value
Type | Description |
---|---|
T | The i'th item of this list. |
Implements
Item[Int32, Int32]
Declaration
public IDirectedCollectionValue<T> this[int start, int count] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | start | The starting index of the interval (inclusive). |
System.Int32 | count | The length of the interval. |
Property Value
Type | Description |
---|---|
IDirectedCollectionValue<T> | The directed collection of items in a specific index interval. |