Given I have two lists of type IGrouping:
List<IGrouping<long, string>>:
a) Key: 1 Values: "a", "b", "c"
2 "d", "e"
b) 1 "aa", "bb", "cc"
3 "f", "g"
And I would like to merge both to one:
Key: 1 Values: "a", "b", "c", "aa", "bb", "cc"
2 "d", "e"
3 "f", "g"
Can anyone help? Thank you.