[This is preliminary documentation and is subject to change.]

Returns an enumerator that iterates through the collection.

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
Visual Basic
Public Function GetEnumerator As IEnumerator(Of KeyValuePair(Of TKey, TValue))
Visual C++
public:
virtual IEnumerator<KeyValuePair<TKey, TValue>>^ GetEnumerator() sealed
F#
abstract GetEnumerator : unit -> IEnumerator<KeyValuePair<'TKey, 'TValue>> 
override GetEnumerator : unit -> IEnumerator<KeyValuePair<'TKey, 'TValue>> 
JScript
public final function GetEnumerator() : IEnumerator<KeyValuePair<TKey, TValue>>

Return Value

A IEnumerator<(Of <(<'T>)>)> that can be used to iterate through the collection.

Implements

IEnumerable<(Of <(<'T>)>)>..::..GetEnumerator()()()()

See Also