using System.Collections.Generic;
private static Dictionary<string, string> dictionary = new Dictionary<string, string> {
public static void Main()
var vals = dictionary.Select(kv => kv.Key + " : " + kv.Value);
Console.WriteLine(string.Join(Environment.NewLine, vals));