Method GetEnumerator
GetEnumerator()
converts the NamedTags dictionary into IEnumerator and return it
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();