ArcGIS Explorer Component Help |
DomainCollection..::.GetEnumerator Method |
DomainCollection Class See Also |
Supports a simple iteration over a generic collection.
Namespace:
ESRI.ArcGISExplorer.DataAssembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)
Syntax
C# |
---|
public virtual IEnumerator<Domain> GetEnumerator() |
Visual Basic (Declaration) |
---|
Public Overridable Function GetEnumerator As IEnumerator(Of Domain) |
Return Value
An enumerator of items from the generic collection.Implements
IEnumerable<(Of <(T>)>)..::.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.