Returns a RegExpMatchList whose elements are copies of the specified value.
Namespace: Facilita.NativeAssembly: 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
Exception | Condition |
---|---|
System ArgumentOutOfRangeException | count is less than 0. |
Remarks
See Also