Simple question that I can't seem to find an answer to:
In C#, how do you take a Dictionary< TKey, TValue[] > and make it an TValue[] array - get all values from the dictionary into a single array?
I've tried experimenting with LINQ but can't find a solution, probably easier than I think.