Method GetAt
GetAt(int)
Returns the item at index in this list.
Declaration
T GetAt(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | Index of the item to return. Must be smaller than count and not negative. |
Returns
| Type | Description |
|---|---|
| T | Returns the item at the given index. |