Removes the element at the specified index of the MfCollectionBase instance. This method is not overridable.
instance.RemoveAt(index)
Removes the element at the specified index of the MfCollectionBase instance.
index
The zero-based index of the element to remove.
Throws MfNullReferenceException if called as a static method.
Throws MfNotSupportedException if MfList is read-only or Fixed size.
Throws MfArgumentOutOfRangeException if index is less than zero.-or index is equal to or greater than MfCollectionBase.Count.
This method is not overridable.
In collections of contiguous elements, such as lists, the elements that follow the removed element move up to occupy the vacated spot.
This method is an O(n) operation, where n is Count.
This method calls OnValidate(), OnInsert(), and OnInsertComplete().