using System.Collections.Generic;
public static void Main()
Dictionary<string, int> people = new Dictionary<string, int>();
people.Add("John Doe", 23);
var enumerator = people.GetEnumerator();
Console.WriteLine(enumerator.Current);
foreach( var person in people )
Console.WriteLine(person);