ThenByDescending

In this chapter you will learn:

  1. How to use ThenByDescending operator
  2. ThenByDescending with custom Comparer

Get to know ThenByDescending

using System;//ja  va 2s. c o m
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class MainClass {
    public static void Main() {

        string[] presidents = {"ant", "arding", "arrison", "eyes", "over", "Jackson"};

        IEnumerable<string> items =
          presidents.OrderBy(s => s.Length).ThenByDescending(s => s);

        foreach (string item in items)
            Console.WriteLine(item);
    }
}

ThenByDescending with custom Comparer

uses an OrderBy and a ThenByDescending clause with a custom comparer to sort first by word length and then by a case-insensitive descending sort of the words in an array.

using System;//  j a  va 2  s.co m
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class CaseInsensitiveComparer : IComparer<string> {
    public int Compare(string x, string y) {
        return string.Compare(x, y, true);
    }
}

public class MainClass {
    public static void Main() {

        string[] words = { "a", "A", "b", "B", "C", "c" };

        var sortedWords =
            words.OrderBy(a => a.Length)
                    .ThenByDescending(a => a, new CaseInsensitiveComparer());

        foreach (var s in sortedWords) {
            Console.WriteLine(s);
        }
    }
}

Next chapter...

What you will learn in the next chapter:

  1. How to use ToArray operator
Home » C# Tutorial » Linq Operators
Aggregate
Aggregate with seed
Aggregate string value
All
Any
Average
Cast
Concat
Contains
Count
DefaultIfEmpty
Distinct
ElementAt
ElementAtOrDefault
Empty
Except
FindAll
First
FirstOrDefault
GroupBy
Intersect
Last
LastOrDefault
LongCount
Max
Min
OfType
OrderBy
OrderByDescending
Range
Repeat
Reverse
SelectMany
SequenceEqual
Single
SingleOrDefault
Skip
SkipWhile
Sum
Take
TakeWhile
ThenBy
ThenByDescending
ToArray
ToList
Zip