Insert()

Namespace ›› System ›› MfCollectionBase ›› Methods ››
Parent Previous Next

Insert()

instance.Insert(index, obj)

Insert(index, obj)

Inserts an element into the MfCollectionBase at the specified index.

Parameters

index

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

obj

The object to insert.

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfArgumentOutOfRangeException if index is less than one or index is greater than Count.

Remarks

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.

Notes to Implementers

This method calls OnValidate(), OnInsert(), and OnInsertComplete().