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
Dictionary allTables = new Dictionary(); allTables = tables1.Union(tables2).ToDictionary(pair => pair.Key, pair => pair.Value);