Overrides MfListBase.RemoveAt()
OutputVar := instance.RemoveAt(index)
Removes the MfGenericList item at the specified index.
index
The zero-based index of the item to remove.
Can be instance of MfInteger or var integer.
On Success returns the Object or var that was removed at index; Otherwise returns null.
Throws MfNullReferenceException if called as a static method.
Throws MfNotSupportedException if MfGenericList is read-only or Fixed size
Throws MfNotSupportedException if obj is not correct type for this instance.
Throws MfArgumentOutOfRangeException if index is less than zero.-or index is equal to or greater than Count
Throws MfArgumentException if index is not a valid MfInteger instance or valid var Integer
This method is not overridable.
In MfGenericList 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.