C#怎么把一个Dictionary的值加载到另一个Dictionary中去、用 foreach?

http://wenwen.soso.com/z/q329530246.htm?ch=wtk.title

foreach(KeyValuePair<string,Class1> item in c1)

{

c2.Add(item.Key,item.Value);

}