Click or drag to resize
MatchCollectionItem Property
Gets an individual member of the collection.

Namespace: System.Text.RegularExpressions
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public virtual Match this[
	int i
] { get; }

Parameters

i
Type: SystemInt32
Index into the Match collection.

Return Value

Type: Match
The captured substring at position i in the collection.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptioni is less than 0 or greater than or equal to Count.
See Also