Method IList<T>.RemoveAt
IList<T>.RemoveAt(int)
Removes the IList<T> item at the specified index.
Declaration
void IList<T>.RemoveAt(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The zero-based index of the item to remove. |
Implements
Exceptions
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException |
|
| NotSupportedException | The IList<T> is read-only. |