2

我想比较 c# 中的两个字典,以便得到输出为“真”和“假”。这是我到目前为止的代码:

var dict3 = Dict.Where(entry => Dict_BM[entry.Key] != entry.Value)
                .ToDictionary(entry => entry.Key, entry => entry.Value);

我有两个不同的词典名称,分别为“Dict”和“Dict_BM”,我想比较这两个词典。请建议将输出设为“True”和“False”的最佳方法,谢谢!

4

2 回答 2

4

我认为这是比较两个字典并返回这些结果是真还是假的最快方法。

这个逻辑对我有用。

                Dictionary<string, int> Dictionary1 = new Dictionary<string, int>();
                d1.Add("data1",10);
                d1.Add("data2",11);
                d1.Add("data3",12);
                Dictionary<string, int> Dictionary2 = new Dictionary<string, int>();
                d2.Add("data3", 12);
                d2.Add("data1",10);
                d2.Add("data2",11);
                bool equal = false;
                if (Dictionary1.Count == Dictionary2.Count) // Require equal count.
                {
                    equal = true;
                    foreach (var pair in Dictionary1)
                    {
                        int tempValue;
                        if (Dictionary2.TryGetValue(pair.Key, out tempValue))
                        {
                            // Require value be equal.
                            if (tempValue != pair.Value)
                            {
                                equal = false;
                                break;
                            }
                        }
                        else
                        {
                            // Require key be present.
                            equal = false;
                            break;
                        }
                    }
                }
                if (equal == true)
                {
                    Console.WriteLine("Content Matched");
                }
                else
                {
                    Console.WriteLine("Content Doesn't Matched");
                }

希望这对你有帮助。

于 2016-05-26T04:36:40.647 回答
1

如果要构建一个新字典,其中每个键的值是一个布尔值,指示两个源字典中的条目是否相等,请尝试以下操作:

var dict3 = Dict.ToDictionary(
    entry => entry.Key, 
    entry => Dict_BM[entry.Key] == entry.Value);

如果两个源字典可能不包含相同的键,您可能想尝试这样的事情:

var dict3 = Dict.Keys.Union(Dict_BM.Keys).ToDictionary(
    key => key, 
    key => Dict.ContainsKey(key) && 
           Dict_BM.ContainsKey(key) && 
           Dict[key] == Dict_BM[key]);

但是,如果您只想测试两个字典是否包含完全相同的元素,则可以简单地使用:

var areEqual = Dict.SequenceEqual(Dict_BM);
于 2013-08-14T03:48:15.690 回答