RegExpMatchList Reverse Method C# API
Reverses the order of the elements in the entire RegExpMatchList.

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

public void Reverse()
Remarks

This method uses Reverse(Array) to reverse the order of the elements, such that the element at RegExpMatchList[i], where i is any index within the range, moves to RegExpMatchList[j], where j equals Count minus i minus 1.

This method is an O(n) operation, where n is Count.

See Also