RegExpMatchList Item Property C# API
Gets or sets the element at the specified index.

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

public RegExpMatch this[
	int index
] { get; set; }

Parameters

index
Type: System Int32
The zero-based index of the element to get or set.

Field Value

The element at the specified index.
Exceptions

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

This property provides the ability to access a specific element in the collection by using the following syntax: myCollection[index].

Retrieving the value of this property is an O(1) operation; setting the property is also an O(1) operation.

See Also