using System.Collections.Generic;
using System.Threading.Tasks;
public static void Main()
Dictionary<string, string> d = new Dictionary<string, string>()
{"token", "sdklfjdlkfjsdlfkjsdlfj"},
foreach (KeyValuePair<string, string> pair in d)
Console.WriteLine("{0}, {1}", pair.Key, pair.Value);
Console.WriteLine("{0}, {1}", pair.Key, pair.Value);