Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If i have a list of numbers:

1,2,3,4,5,6,7,8

and I want to order by a specific number and then show the rest. For example if i pick '3' the list should be:

3,1,2,4,5,6,7,8

Looking for linq and c#. Thank you

share|improve this question

4 Answers

up vote 17 down vote accepted
list.OrderByDescending(i => i == 3).ThenBy(i => i);
share|improve this answer
1  
Your == 3 should be != 3 or use OrderByDescending. – Joachim Isaksson Mar 29 '12 at 21:41
thank you! works good – vts Mar 30 '12 at 15:04

Maybe something like this:

List<int> ls=new List<int>{1,2,3,4,5,6,7,8};
int nbr=3;
var result= ls.OrderBy (l =>(l==nbr?int.MinValue:l));
share|improve this answer

A couple of answers already sort the last few numbers (which may be correct since you're only showing an already sorted list). If you want the "unselected" numbers to be displayed in their original, not necessarily sorted order instead of sorted, you can instead do;

int num = 3;
var result = list.Where(x => x == num).Concat(list.Where(x => x != num));

As @DuaneTheriot points out, IEnumerable's extension method OrderBy does a stable sort and won't change the order of elements that have an equal key. In other words;

var result = list.OrderBy(x => x != 3);

works just as well to sort 3 first and keep the order of all other elements.

share|improve this answer
You can accomplish the same thing with list.OrderBy(i => i != 3). – Duane Theriot Mar 29 '12 at 21:56
public static IEnumerable<T> TakeAndOrder<T>(this IEnumerable<T> items, Func<T, bool> f)
{       
    foreach ( var item in items.Where(f))
        yield return item;
    foreach (var item in items.Where(i=>!f(i)).OrderBy(i=>i))
        yield return item;
}


var items = new [] {1, 4, 2, 5, 3};
items.TakeAndOrder(i=> i == 4);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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