list of dictionaries c# code example
Example 1: c# dictionaries
IDictionary<int, string> dict = new Dictionary<int, string>();
//or
Dictionary<int, string> dict = new Dictionary<int, string>();
Example 2: list dictionary c#
List<Dictionary<string, string>> MyList = new List<Dictionary<string, string>>();