開始コードは次のとおりです。
Dictionary<string,object> dest=...;
IDictionary<string,object> source=...;
// Overwrite in dest all of the items that appear in source with their new values
// in source. Any new items in source that do not appear in dest should be added.
// Any existing items in dest, that are not in source should retain their current
// values.
...
foreach
ソース内のすべての項目を通過するループで明らかにこれを行うことができますが、C# 4.0 (おそらく LINQ) でこれを行う簡単な方法はありますか?
ありがとう