I want to compare two dictionaries in c# so as to get the output as 'True' and 'False'.Here is the code i have so far :
var dict3 = Dict.Where(entry => Dict_BM[entry.Key] != entry.Value)
.ToDictionary(entry => entry.Key, entry => entry.Value);
I have two different dictionaries names as 'Dict' and 'Dict_BM' and i want to compare these two dictionaries.Please suggest the best possible way to get the output as 'True' and 'False' Thanks!