Removes a range of elements from the source array
[C#] void RemoveRange(int index, int count)
void RemoveRange(int index, int count)
may throw Exception()
Removes a range of elements from the source array.
If the index is equal to the Count then the elements are added to the end of the array.
If the index or count is invalid then an exception will be raised.
None.