I have a Dictionary in C#:
Dictionary<string, List<string>>
How can I use Linq to flatten this into one List<string> that contains all of the lists in the Dictionary?
Thanks!
|
|
Very easily:
|
|||||||||||||
|
|
|
|||
|
|
|
Assuming you have an instance called dict:
|
||||
|
|
|
as a query
or as methods...
I like this over what others have done as I'm passing the whole dictionary into the Linq query rather than just the values. |
|||
|
|
|
You should try something like this:
|
|||||
|