GroupCollection.IList<Group>.Item[Int32] Property

Definition

Gets the group at the specified position in the collection.

property System::Text::RegularExpressions::Group ^ System::Collections::Generic::IList<System::Text::RegularExpressions::Group>::Item[int] { System::Text::RegularExpressions::Group ^ get(int index); void set(int index, System::Text::RegularExpressions::Group ^ value); };
System.Text.RegularExpressions.Group System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.Item[int index] { get; set; }
member this.System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.Item(int) : System.Text.RegularExpressions.Group with get, set
 Property Item(index As Integer) As Group Implements IList(Of Group).Item

Parameters

index
Int32

The zero-based index of the group in the group collection.

Property Value

The group in the desired position.

Implements

Exceptions

Cannot set an item. This is a read-only collection.

Remarks

This member is an explicit interface member implementation. It can be used only when the GroupCollection instance is cast to an IList<T> interface.

Applies to