Hi
I have a list of strings, from which I wish to select unique values.
For example, my list might be:
[user=Peter][count=13]
[user=Peter][count=2]
[user=Colin][count=3]
[user=Sue][count=7]
[user=Sue][count=9]
I want to obtain a result list that contains a list of unique "users"; for example a result that looks like:
Peter
Colin
Sue
Can someone help with a LINQ for this?
Thanks for any help,
Peter
Loading
Sam HobbsPosted Feb 14, 2011, 5:56 PM
Suthish NairPosted Feb 16, 2011, 2:55 AM
PeterPosted Feb 14, 2011, 9:17 PM