RemoveAt()

Namespace ›› System ›› MfCollectionBase ›› Methods ››
Parent Previous Next

RemoveAt()

Removes the element at the specified index of the MfCollectionBase instance. This method is not overridable.

instance.RemoveAt(index)

RemoveAt(index)

Removes the element at the specified index of the MfCollectionBase instance.

Parameters

index

The zero-based index of the element to remove.

Throws

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.

Remarks

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.

Notes to Implementers

This method calls OnValidate(), OnInsert(), and OnInsertComplete().