Possible Duplicate:
Merging dictionaries in C#
dictionary 1
"a", "1"
"b", "2"
dictionary 2
"c", "3"
"d", "4"
dictionary 3
"e", "5"
"f", "6"
Combined dictionary
"a", "1"
"b", "2"
"c", "3"
"d", "4"
"e", "5"
"f", "6"
How do I combine the above 3 dictionaries into a single combined dictionary?