using System;
using System.Collections.Generic;
Dictionary<string, string > dict1 = new();
dict1.Add("1","1d");
dict1.Add("2","2d");
Dictionary<string,string> dict2 = new();
dict2.Add("3","3d");
dict2.Add("4","4d");
List<Dictionary<string,string>> dicts = new(){dict1,dict2};