dictionary c# how to use code example
Example 1: c# dictionary first
dictionary.Keys.First();
Example 2: c# dictionaries
IDictionary<int, string> dict = new Dictionary<int, string>();
//or
Dictionary<int, string> dict = new Dictionary<int, string>();