我有一个庞大的字典列表,例如
List<Dictionary<String,SomeType>> Dict = new List<Dictionary<string,SomeType>>();
我需要转换为其他类型的字典列表,如下所示:
List<Dictionary<String,SomeOtherType>> AnotherDict;
有没有比“字典”列表上的 foreach 更好的方法。
我有一个庞大的字典列表,例如
List<Dictionary<String,SomeType>> Dict = new List<Dictionary<string,SomeType>>();
我需要转换为其他类型的字典列表,如下所示:
List<Dictionary<String,SomeOtherType>> AnotherDict;
有没有比“字典”列表上的 foreach 更好的方法。