Supports a simple iteration over a generic collection.

Namespace:  ESRI.ArcGISExplorer.Geometry

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public virtual IEnumerator GetEnumerator()
Visual Basic (Declaration)
Public Overridable Function GetEnumerator As IEnumerator

Return Value

An enumerator of items from the generic collection.

Implements

IEnumerable..::.GetEnumerator()()()

Remarks

You never need to call this method explicitly as it is used implicitly by the "in" part of a "for each" loop to iterate over a collection. The generic System.Collections.Generic.IEnumerator(T) interface is inherited from the non-generic System.Collections.IEnumerable interface. For more information, see the help for the IEnumerator(T)interface.

See Also