vote up 14 vote down star
6

I'm using C# on Framework 3.5. I'm looking to quickly sort a Generic List<>. For the sake of this example lets say I have a List of a Person type with a property of lastname. How would I sort this List using a lambda expression?

List<Person> people = PopulateList();
people.OrderBy(???? => ?????)
flag

60% accept rate

4 Answers

vote up 25 vote down check

If you mean an in-place sort (i.e. the list is updated):

people.Sort((x, y) => string.Compare(x.LastName, y.LastName));

If you mean a new list:

var newList = people.OrderBy(x=>x.LastName).ToList(); // ToList optional
link|flag
I believe that first one wants to be people.Sort((x, y) => string.Compare(x.LastName, y.LastName) < 0); – James Curran Oct 9 '08 at 16:56
@James: I wouldn't think so. Comparison<T> returns int, not bool. – Jon Skeet Oct 9 '08 at 16:59
What Jon said... – Marc Gravell Oct 9 '08 at 17:09
I wonder if you want to OrderBy Firstname and Lastname... what should you write? – balexandre Apr 16 at 7:03
var newList = people.OrderBy(x=>x.FirstName).ThenBy(x=>x.LastName).ToList(); – Marc Gravell Apr 16 at 7:36
vote up 4 vote down

Do you need the list to be sorted in place, or just an ordered sequence of the contents of the list? The latter is easier:

var peopleInOrder = people.OrderBy(person => person.LastName);

To sort in place, you'd need an IComparer<Person> or a Comparison<Person>. For that, you may wish to consider ProjectionComparer in MiscUtil.

(I know I keep bringing MiscUtil up - it just keeps being relevant...)

link|flag
vote up 0 vote down

people.OrderBy(person => person.lastname).ToList();

link|flag
That won't capture the result; OrderBy returns a new IEnumerable<T> list. – Marc Gravell Oct 9 '08 at 16:51
Ah, good point, Mark -- corrected – Danimal Oct 9 '08 at 16:57
Well, that still doesn't capture the result - you'd need a "List<Person> people = " on the left hand side... – Marc Gravell Oct 9 '08 at 17:10
vote up 0 vote down

HI

OrderBy IN WHICH CLASS I MUST USE

THANK

link|flag

Your Answer

Get an OpenID
or

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