Removes the element at the specified position in this list.


- index (Int32)
- The zero-based index of the element to remove.

The element previously at position index.

Shifts any subsequent elements to the left (subtracts one from
their indices). Returns the element that was removed from the list.

Exception | Condition |
---|---|
IndexOutOfRangeException | index is out of range.
|