c# dictonary list code example
Example 1: list dictionary c#
List<Dictionary<string, string>> MyList = new List<Dictionary<string, string>>();
Example 2: array list dictionary c#
using System.Collections.Generic;
List<string> myList = new List<string>();
myList.Add("Hello");
myList.Add("World");
myList.Add(10); // Compiler Error