Gets or sets the element at the specified index.
Namespace: Facilita.NativeAssembly: 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
Exception | Condition |
---|---|
System ArgumentOutOfRangeException | index is less than 0. -or- index is equal to or greater than Count. |
Remarks
Retrieving the value of this property is an O(1) operation; setting the property is also an O(1) operation.
See Also