using System.Collections.Generic;
public static void Main()
private static void enumerateDict(){
Dictionary<string, int> testDict = new Dictionary<string, int>();
testDict.Add("three", 3);
testDict.ToList<KeyValuePair<string, int>>().ForEach(x => Console.WriteLine(x.Key));