Method GetEnumerator
GetEnumerator()
Returns an enumerator that iterates through the entries of the NamedTagsDictionary.
Declaration
public IEnumerator GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator | IEnumerator of the the NamedTagsDictionary. |
Examples
The following example gets enumerator of the NamedTagsDictionary.
NamedTagsDictionary tags = new NamedTagsDictionary();
IEnumerator tagsEnumerator = tags.GetEnumerator();