RegExpMatchList AddRange Method C# API
Adds the elements of the specified collection to the end of the RegExpMatchList.

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

public void AddRange(
	RegExpMatchList values
)

Parameters

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.
Remarks

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

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 the RegExpMatchList can accommodate the new elements without increasing the Capacity, this method is an O(n) operation, where n is the number of elements to be added. If the capacity needs to be increased to accommodate the new elements, this method becomes an O(n + m) operation, where n is the number of elements to be added and m is Count.

See Also