如何比较字典中的列表值
本文关键字:列表 字典 何比较 比较 | 更新日期: 2023-09-27 18:19:09
如何比较Dictionary<String, List<String>>
字典内的值?
如果字典中的所有值都相同,则执行操作。否则什么都不做
谢谢
如果要比较Dictionary的键,则:
var dict1 = new Dictionary<string, List<string>>();
var dict2 = new Dictionary<string, List<string>>();
// something..
if (dict1.Keys.SequenceEqual(dict2.Keys))
{
// your code
}
如果要比较Dictionary的值,则:
var dict1 = new Dictionary<string, List<string>>();
var dict2 = new Dictionary<string, List<string>>();
// something..
var d1Keys = dict1.Keys.ToList();
var result = d1Keys
.All(key => dict2.ContainsKey(key) && dict1[key].SequenceEqual(dict2[key]));
// result == true, if equals