I have a NameValueCollection and I would like to sort this on his value. Does anyone got some ideas how to do this easely? I was thinking to wrap it into a SortedList or SortedDictionairy but I'm not sure how to get started.

Thijs

link|improve this question

Why not just call OrderBy on your collection? – R0MANARMY Oct 18 '11 at 15:05
1  
Can't you use SortedDictionary or SortedList instead? Than it would be pretty easy: stackoverflow.com/questions/289/… , stackoverflow.com/questions/1250281/… – Pieter Oct 18 '11 at 15:06
@Pieter , That's the post I was looking for but didn't found! Thank you! – Thijs Oct 18 '11 at 15:07
feedback

1 Answer

up vote 5 down vote accepted

Using LINQ:

var sorted = nvc.OrderBy(kvp => kvp.Value);
link|improve this answer
Ok, this seems easy but I don't realy understand how to make that into a Collection.. Could you extend your code a bit please? – Thijs Oct 18 '11 at 15:05
1  
@Thijs - sorted is a collection. – Oded Oct 18 '11 at 15:07
Oh :) thank you – Thijs Oct 18 '11 at 15:09
@Thijs - Is there a problem with my answer? – Oded Oct 28 '11 at 13:07
Yes, apparently a NameValueCollection doesn't have an OrderBy() method.. – Thijs Oct 28 '11 at 13:38
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.