Count values in Dictionary using LINQ and LINQ extensions

Viewed 26168

I have a dictionary that looks something like this:

Dictionary<String, List<String>>

test1 : 1,3,4,5
test2 : 2,3,6,7
test3 : 2,8

How can I get a count of all the values using LINQ and LINQ extensions?

3 Answers
Related