instance.Insert(index, obj)
Inserts an element into the MfCollectionBase at the specified index.
index
The zero-based index at which value should be inserted.
obj
The object to insert.
Throws MfNullReferenceException if called as a static method.
Throws MfArgumentOutOfRangeException if index is less than one or index is greater than Count.
If index is equal to Count, value is added to the end of MfCollectionBase.
In collections of contiguous elements, such as MfList, 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.
This method calls OnValidate(), OnInsert(), and OnInsertComplete().