MatchCollectionItem Property |
Gets an individual member of the collection.
Namespace: System.Text.RegularExpressionsAssembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax public virtual Match this[
int i
] { get; }
Parameters
- i
- Type: SystemInt32
Index into the Match collection.
Return Value
Type:
MatchThe captured substring at position
i in the collection.
Exceptions Exception | Condition |
---|
ArgumentOutOfRangeException | i is less than 0 or greater than or equal to Count. |
See Also