Insert()

Namespace ›› System ›› MfByteList ›› Methods ››
Parent Previous Next

Insert()

Inserts an integer byte value into the MfByteList instance at the specified index.
Overrides MfListBase.Insert()

instance.Insert(index, value)

Insert(index, value)

Inserts an integer byte value into the MfByteList instance 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

An integer value from 0 to 255
Can be var integer or any type that matches IsIntegerNumber.

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfArgumentOutOfRangeException if index is less than zero.-or index is greater then Count. However if AutoIncrease Size is set to true not error is thrown if index is greater then Count.
Throws MfArgumentException if index is not a valid Integer object or valid var Integer.
Throws MfArgumentOutOfRangeException if value is less then 0 or greater then 255

Remarks

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

If index is greater then Count and AutoIncrease is true then extra elements with a value of 0 will be added to the instance that will fill in any extra indices absent before the index value.

In collections of contiguous elements, such as MfByteList, 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.