How can I get Linq in C# to return a SortedList given an IEnumerable? If I can't, is it possible to cast or transform the IEnumerable to a SortedList?
|
| ||||
|
feedback
|
|
The simplest way would probably be to create a dictionary using
This will allow you to create
| ||||
|
feedback
|
|
You will need to use the IDictionary constructor so use the ToDictionary extension method on your linq query and then use new SortedList(dictionary); e.g.
| |||
|
feedback
|