RegExpMatchList RemoveAt Method C# API
Removes the element at the specified index of the RegExpMatchList.

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

public void RemoveAt(
	int index
)

Parameters

index
Type: System Int32
The zero-based index of the element to remove.
Exceptions

ExceptionCondition
System ArgumentOutOfRangeExceptionindex is less than 0.
-or-
index is greater than Count.
Remarks

This method is an O(n) operation, where n is (Count - index).
See Also