Overrides MfListBase.Insert()
instance.Insert(index, obj)
Inserts an element into the MfGenericList at the specified index.
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 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.
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.