finding difference between two dictionaries

.net, c#, collections, dictionary, linq

Solution

var diff = dicOne.Except(dicTwo).Concat(dicTwo.Except(dicOne));

Problem

Is there a LINQ method to find difference between two generic dictionaries? Same as in this question, but with generic dictionaries.

Original source

Related problems