Insert()

Namespace ›› System ›› MfListBase ›› Methods ››
Parent Previous Next

Insert()

Inserts an element into the MfListBase at the specified index.

instance.Insert(index, value)

Insert(index, value)

Inserts an element into the MfListBase at the specified index.

Parameters

index

The zero-based index at which value should be inserted.
Can be var integer or any type that matches IsIntegerNumber.

value

The object or var to insert.

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfNotSupportedException in derived classes if IsFixedSize or IsReadOnly is true.
Throws MfArgumentOutOfRangeException if index is less than zero.-or index is greater then Count.
Throws MfArgumentException if index is not a valid Integer object or valid var Integer.

Remarks

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

In collections of contiguous elements, such as MfList, the elements that follow the insertion point move down to accommodate the new element and Count is increased by one.

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