Returns an enumerator that iterates through the Dictionary.

Namespace: System.Extensions.Collections.ObjectModel
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

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>> 

Return Value

Type: IEnumerator<(Of <(<'KeyValuePair<(Of <(<'TKey, TValue>)>)>>)>)>
The enumerator.

Implements

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

See Also