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?

link|improve this question
feedback

2 Answers

The simplest way would probably be to create a dictionary using ToDictionary, and then call the SortedList<TKey, TValue>(dictionary) constructor. Alternatively, add your own extension method:

public static SortedList<TKey, TValue> ToSortedList<TSource, TKey, TValue>
    (this IEnumerable<TSource> source,
     Func<TSource, TKey> keySelector,
     Func<TSource, TValue> valueSelector)
{
    // Argument checks elided
    SortedList<TKey, TValue> ret = new SortedList<TKey, TValue>();
    foreach (var item in source)
    {
        // Will throw if the key already exists
        ret.Add(keySelector(item), valueSelector(item));
    }
    return ret;
}

This will allow you to create SortedLists with anonymous types as the values:

var list = people.ToSortedList(p => p.Name,
                               p => new { p.Name, p.Age });
link|improve this answer
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.

 var list=new SortedList(query.ToDictionary(q=>q.KeyField,q=>q));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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