Removes an Atom at a specified position from the array.
[C#] void RemoveAt(int index)
void RemoveAt(int index)
may throw ArgumentOutOfRangeException()
If the index is not valid then an ArgumentOutOfRangeException will be thrown.
When an Atom is removed the elements that follow the removed element move up to occupy the vacated spot.
None.