连接两个词典
本文关键字:两个 连接 | 更新日期: 2024-04-03 09:48:15
给定一些字典
Dictionary<string, string> GroupNames = new Dictionary<string, string>();
Dictionary<string, string> AddedGroupNames = new Dictionary<string, string>();
我无法将它们合并为一个:
GroupNames = GroupNames.Concat(AddedGroupNames);
因为"无法隐式转换类型"。我相信(我的代码证明了我的真实性)他们的类型是一样的——我忽略了什么?
我认为您将GroupNames
定义为Dictionary<string,string>
,因此您需要像这样添加ToDictionary
:
GroupNames = GroupNames.Concat(AddedGroupNames)
.ToDictionary(x=>x.Key,x=>x.Value);
请注意,两个原始字典将有不同的关键字,否则我们需要一些规则来正确地合并它们。