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