RemoveAt()

Namespace ›› System ›› MfListBase ›› Methods ››
Parent Previous Next

RemoveAt()

Removes the item at the specified index.

instance.RemoveAt(index)

RemoveAt(index)

Removes the item at the specified index.

Parameters

index

The zero-based index of the item to remove.
Can be var integer or any type that matches IsIntegerNumber.

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfNotSupportedException in derived classes if IsFixedSize or IsReadOnly is true.
Throws MfArgumentOutOfRangeException if index is less than zero.-or index is greater then Count.
Throws MfArgumentException if index is not a valid Integer object or valid var Integer.

Remarks

This method is an O(n) operation, where n is Count.

The elements that follow the removed element move up to occupy the vacated spot and Count is reduced by one.

Can be overridden in derived classed but the derived class must call Base.RemoveAt(index)