GroupCollection.IList<Group>.IndexOf(Group) Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines the index of a specific group in the group collection.
 virtual int System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.IndexOf(System::Text::RegularExpressions::Group ^ item) = System::Collections::Generic::IList<System::Text::RegularExpressions::Group ^>::IndexOf;int IList<Group>.IndexOf(System.Text.RegularExpressions.Group item);abstract member System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.IndexOf : System.Text.RegularExpressions.Group -> int
override this.System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.IndexOf : System.Text.RegularExpressions.Group -> intFunction IndexOf (item As Group) As Integer Implements IList(Of Group).IndexOfParameters
- item
- Group
The group to locate in the group collection.
Returns
The index of the item if found; otherwise, -1.
Implements
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.