OrderByDescending()
Сортирует по убыванию ключа.
Сигнатура
IOrderedEnumerable<T> source.OrderByDescending(Func<T, TKey> key)Сортирует элементы по убыванию ключа.
var nums = new[] { 1, 3, 2 };
nums.OrderByDescending(x => x); // [3, 2, 1]