This is kind-of related to this question, on how to merge two dictionaries in C#. An elegant Linq solution is presented, which is cool.
However, that question relates to Dictionary<Object1, Object2>,
whereas I have a dictionary where the value is a List<Object2>.
I am looking for a solution for merging a Dictionary<Object1, List<Object2>>,
with the following requirements:
- If Dictionary1 contains the same key as Dictionary2, then their
List<Object2>
lists should be combined. You would end up with a new key-value-pair with the shared key, and the combined lists from the two dictionaries.
- If Dictionary1 contains a key that Dictionary2 doesn't then the
List<Object2>
list from Dictionary1 should become the value, and vice versa.
This may not be possible in Linq, or it may be worth writing it out longhand with for loops and the like, but it would be nice to have an elegant solution.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…