RegExpMatchList SetRange Method C# API
Copies the elements of a collection over a range of elements in the RegExpMatchList.

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

public void SetRange(
	int index,
	RegExpMatchList values
)

Parameters

index
Type: System Int32
The zero-based index at which to start copying the elements of values.
values
Type: Facilita.Native RegExpMatchList
The RegExpMatchList whose elements to copy to this 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 ArgumentOutOfRangeExceptionindex is less than 0.
-or-
index plus the number of elements in values is greater than Count.
System ArgumentNullExceptionvalues is null.
System NotSupportedExceptionThis RegExpMatchList is read-only.
See Also