RegExpMatchList Constructor (Int32)C# API
Initializes a new instance of the RegExpMatchList class that is empty and has the specified initial capacity.

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

public RegExpMatchList(
	int capacity
)

Parameters

capacity
Type: System Int32
The number of elements that the new RegExpMatchList can initially store.
Exceptions

ExceptionCondition
System ArgumentOutOfRangeExceptioncapacity is less than 0.
Remarks

The capacity of an RegExpMatchList is the number of elements that the RegExpMatchList can hold. As elements are added to an RegExpMatchList, the capacity is automatically increased as required by reallocating the internal array.

If the size of the collection can be estimated, specifying the initial capacity eliminates the need to perform a number of resizing operations while adding elements to the RegExpMatchList.

This constructor is an O(n) operation, where n is capacity.

See Also