Inserts the elements of a collection into the RegExpMatchList at the specified index.
Namespace: Facilita.NativeAssembly: 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
Exception | Condition |
---|---|
System ArgumentNullException | values is null. |
System ArgumentOutOfRangeException | index is less than 0. -or- index is greater than Count. |
Remarks
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