我必须将两个字典合并到一个字典中,删除重复条目,如果第一个字典中不存在则添加。
Dictionary<int, string> firstDict = new Dictionary<int, string>();
firstDict.Add(1, "X");
firstDict.Add(2, "B");
Dictionary<int, string> secondDict = new Dictionary<int, string>();
secondDict.Add(1, "M");
secondDict.Add(4, "A");
结果应该是这样的:
{4, "A"}
{2, "B"}
{1, "X"}