Removes an item at a specified position from the collection.
[C#] void RemoveAt(int index)
void RemoveAt(int index)
may throw NotSupportedException()
Removes an item from the collection.
All Fields collections are read only so calling this function will generate a NotSupportedException..
None.