Method RemoveAt
RemoveAt(Int32)
Removes the entry at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | index | Zero-based index of the entry to remove. |
Remarks
This operation may involve shifting the entries following the
index to the left to replace the removed
entry.
Exceptions
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | If
index is less than 0 or equal to or greater
than Count |