GroupCollection.GetEnumerator Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Updated: August 2009
Returns an enumerator that can iterate through the collection.
Namespace: System.Text.RegularExpressions
Assembly: System (in System.dll)
Syntax
'Declaration
Public Function GetEnumerator As IEnumerator
public IEnumerator GetEnumerator()
Return Value
Type: System.Collections.IEnumerator
An object that contains all Group objects in the GroupCollection.
Implements
Remarks
Instead of calling the GetEnumerator method to retrieve an enumerator that lets you iterate through the Group objects in the collection, you should use the group iteration construct (such as foreach in C# and For Each…Next in Visual Basic) that is provided by your programming language.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Change History
Date |
History |
Reason |
---|---|---|
August 2009 |
Added the Remarks section. |
Customer feedback. |