RegExpMatchList InsertRange Method C# API
Inserts the elements of a collection into the RegExpMatchList at the specified index.

Namespace: Facilita.Native
Assembly: clrNativeWrapper (in clrNativeWrapper.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public void InsertRange(
	int index,
	RegExpMatchList values
)

Parameters

index
Type: System Int32
The zero-based index at which the new elements should be inserted.
values
Type: Facilita.Native RegExpMatchList
The collection whose elements should be added to the end of the RegExpMatchList. The collection itself cannot be null, but it can contain elements that are null, if type T is a reference type.
Exceptions

ExceptionCondition
System ArgumentNullExceptionvalues is null.
System ArgumentOutOfRangeExceptionindex is less than 0.
-or-
index is greater than Count.
Remarks

If the new Count (the current Count plus the size of the collection) will be greater than Capacity, the capacity of the RegExpMatchList is increased by automatically reallocating the internal array to accommodate the new elements, and the existing elements are copied to the new array before the new elements are added.

If index is equal to Count, the elements are added to the end of RegExpMatchList.

The order of the elements in the collection is preserved in the RegExpMatchList.

This method is an O(n + m) operation, where n is the number of elements to be added and m is Count.

See Also