Remove()

Namespace ›› System ›› MfCharList ›› Methods ››
Parent Previous Next

Remove()

Removes the one or more occurrences of a specific object from the instance.
Overrides MfListBase.Remove()

instance.Remove(obj [,StartIndex, Count, IgnoreCase, RemoveAll])

Remove(obj [,StartIndex, Count, IgnoreCase, RemoveAll])

Removes the one or more occurrences of a specific object from the instance.

Parameters

obj

The object or var to remove from the instance.
Can be var integer or var string or instance of MfCharList or instance of MfString or any type that matches IsIntegerNumber

StartIndex

Optional, the zero-based startIndex to start searching within the current instance of MfCharList.
If omitted the the then searching begin at index zero.

Count

Optional, the number of elements from StartIndex to check for index of obj within current instance of MfCharList.
If omitted then search starts at StartIndex and searches all elements of the current instance until if and when index is found.

IgnoreCase

Optional, if true then case will be ignored when searching for index; Otherwise case will be considered.
Default value is true.

RemoveAll

Optional Value, Default is false.
If true then all instance of obj are removed from current instance; Otherwise only first instance is removed.

Returns

On Success returns the Object or var that was removed; Otherwise returns null

Throws

Throws MfNullReferenceException if called as a static method.
Throws MfArgumentNullException if obj is null
Throws MfArgumentOutOfRangeException if StartIndex or Count is outside the range of elements in the list.

Remarks

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

In collections of contiguous elements, such as MfCharList, the elements that follow the removed element move up to occupy the vacated spot. If the collection is indexed, the indexes of the elements that are moved are also updated. This behavior does not apply to collections where elements are conceptually grouped into buckets, such as a hash table.