Insert()

Namespace ›› System ›› MfGenericList ›› Methods ››
Parent Previous Next

Insert()

Overrides MfListBase.Insert()

instance.Insert(index, obj)

Insert(index, obj)

Inserts an element into the MfGenericList at the specified index.

Parameters

index

The zero-based index at which value should be inserted.

obj

The object to insert. The object type must be of the same type as ListType

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfNotSupportedException if MfGenericList is read-only or Fixed size
Throws MfArgumentOutOfRangeException if index is less than zero.-or index is greater than Count
Throws MfArgumentException if index is not a valid MfInteger instance or valid var Integer.
Throws MfNotSupportedException if obj is not correct type for this instance.

Remarks

If index is equal to Count, value is added to the end of MfGenericList.

In MfGenericList the elements that follow the insertion point move down to accommodate the new element.

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