vote up 2 vote down star

So I came across an interesting problem today. We have a WCF web service that returns an IList. Not really a big deal until I wanted to sort it.

Turns out the IList interface doesn't have a sort method built in.

I ended up using the ArrayList.Adapter(list).Sort(new MyComparer()) method to solve the problem but it just seemed a bit "ghetto" to me.

I toyed with writing an extension method, also with inheriting from IList and implementing my own Sort() method as well as casting to a List but none of these seemed overly elegant.

So my question is, does anyone have an elegant solution to sorting an IList

flag

11 Answers

vote up 5 vote down check

You're going to have to do something like that i think (convert it into a more concrete type).

Maybe take it into a List of T rather than ArrayList, so that you get type safety and more options for how you implement the comparer.

link|flag
vote up 13 vote down

How about using LINQ To Objects to sort for you?

Say you have a IList<Car>, and the car had an Engine property, I believe you could sort as follows:

from c in list
orderby c.Engine
select c;

Edit: You do need to be quick to get answers in here. As I presented a slightly different syntax to the other answers, I will leave my answer - however, the other answers presented are equally valid.

link|flag
vote up 5 vote down

You can use LINQ:

using System.Linq;

IList<Foo> list = new List<Foo>();
IEnumerable<Foo> sortedEnum = list.OrderBy(f=>f.Bar);
IList<Foo> sortedList = sortedEnum.ToList();
link|flag
vote up 2 vote down

Convert your IList into List<T> or some other generic collection and then you can easily query/sort it using System.Linq namespace (it will supply bunch of extension methods)

link|flag
vote up 1 vote down

@lomaxx Well, there is LINQBridge

link|flag
vote up 0 vote down

I'm going with secretgeek on this one. Whilst I like the linq implementations, they do limit things to people with access to C# 3.x.

link|flag
vote up 0 vote down

@brad: you sure do, but the answer you posted is still valid as it offers a solution to a slightly different problem to the one that marxidad posted.

On a side note, if I could accept partial answers, I would have given partial credits to all of the answers provided.

link|flag
vote up 0 vote down

Here's an example using the stronger typing. Not sure if it's necessarily the best way though.

static void Main(string[] args)
{
    IList list = new List<int>() { 1, 3, 2, 5, 4, 6, 9, 8, 7 };
    List<int> stronglyTypedList = new List<int>(Cast<int>(list));
    stronglyTypedList.Sort();
}

private static IEnumerable<T> Cast<T>(IEnumerable list)
{
    foreach (T item in list)
    {
        yield return item;
    }
}

The Cast function is just a reimplementation of the extension method that comes with 3.5 written as a normal static method. It is quite ugly and verbose unfortunately.

link|flag
vote up 0 vote down

In VS2008, when I click on the service reference and select "Configure Service Reference", there is an option to choose how the client de-serializes lists returned from the service.

Notably, I can choose between System.Array, System.Collections.ArrayList and System.Collections.Generic.List

link|flag
vote up 0 vote down

Found a good post on this and thought I'd share. Check it out HERE

Basically.

You can create the following class and IComparer Classes

public class Widget { public string Name = string.Empty; public int Size = 0;

public Widget(string name, int size) {
this.Name = name;
this.Size = size;

} }

public class WidgetNameSorter : IComparer { public int Compare(Widget x, Widget y) { return x.Name.CompareTo(y.Name); } }

public class WidgetSizeSorter : IComparer { public int Compare(Widget x, Widget y) { return x.Size.CompareTo(y.Size); } }

Then If you have an IList, you can sort it like this.

List widgets = new List(); widgets.Add(new Widget("Zeta", 6)); widgets.Add(new Widget("Beta", 3)); widgets.Add(new Widget("Alpha", 9));

widgets.Sort(new WidgetNameSorter()); widgets.Sort(new WidgetSizeSorter());

But Checkout this site for more information... Check it out HERE

link|flag
vote up 0 vote down
using System.Linq;

var yourList = SomeDAO.GetRandomThings();
yourList.ToList().Sort( (thing, randomThing) => thing.CompareThisProperty.CompareTo( randomThing.CompareThisProperty ) );

That's pretty !ghetto.

link|flag

Your Answer

Get an OpenID
or

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