using System.Collections.Generic;
public static void Main()
var myDictionary = new Dictionary<string, string>();
myDictionary.Add("key1", "value1");
myDictionary.Add("key2", "value2");
myDictionary.Add("key3", "value3");
Console.WriteLine(string.Join(" ,", myDictionary.Keys));