What\'s the best way to merge 2 or more dictionaries (Dictionary) in C#? (3.0 features like LINQ are fine).
Dictionary
I\'m thinking of a method signa
fromDic.ToList().ForEach(x => { if (toDic.ContainsKey(x.Key)) toDic.Remove(x.Key); toDic.Add(x); });