RegExpMatchList Repeat Method C# API
Returns a RegExpMatchList whose elements are copies of the specified value.

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

public static RegExpMatchList Repeat(
	RegExpMatch value,
	int count
)

Parameters

value
Type: Facilita.Native RegExpMatch
The RegExpMatch to copy multiple times in the new RegExpMatchList. The value can be a null reference.
count
Type: System Int32
The number of times value should be copied.

Return Value

A RegExpMatchList with count number of elements, all of which are copies of value.
Exceptions

ExceptionCondition
System ArgumentOutOfRangeExceptioncount is less than 0.
Remarks

This method is an O(n) operation, where n is count.
See Also