using System.Collections.Generic;
static void Main(string[] args)
var a = new Dictionary<string, string>{{"a", "False"}, {"b", "False"}, {"c", "True"}};
var b = new Dictionary<string, string>{{"a", "False"}, {"b", "True"}, {"c", "False"}};
var c = a.Except(b).Select(x => x.Key);
var d = a.Except(b).Select(x => x.Key);
var e = a.Except(b).Select(x => x.Key);
var e2 = (a.Except(b)).Union(b.Except(a)).Select(x => x.Key).Distinct();