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?
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?