What is the best way to convert a List to SortedList? Any good way to do it without cycling through it? Any clever way to do it with an OrderBy()?
WRAP UP Please read all answers and comments.
|
What is the best way to convert a List to SortedList? Any good way to do it without cycling through it? Any clever way to do it with an OrderBy()? WRAP UP Please read all answers and comments.
| |||||||||||||
feedback
|
Now I have no clue how efficient this is, but it's one line of code :) Also, in this example I just used the string itself as the selector. In a real scenario, you should know ahead of time what you'd like to use as a selector. | |||
|
feedback
|
|
Do you mean:
Assuming input:
1 is trivial
2 is trivial
3 is trivial with a copy
and more efficiently:
I can't see why you would want to do 3 but there you go. | |||||||
feedback
|
|
Understand that a If you mean "sorted list" instead of " | |||
|
feedback
|
The LINQ gives you an ISortedEnumerable i believe, which may be good enough for your purposes. | |||
|
feedback
|