Функция упорядочивает в порядке убывания.
Main.cs
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { //источник данных int[] ara = new int[] {7, 4, 1, 3, 8, 2, 5, 9, 0, 10, 6}; //создание запроса var query = ara.OrderByDescending(a => a); //выполнение запроса foreach(var i in query) { Console.Write("{0} ", i); } Console.WriteLine(); Console.ReadKey(); return 0; } }
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { //источник данных int[] ara = new int[] {7, 4, 1, 3, 8, 2, 5, 9, 0, 10, 6}; //создание запроса var query = ara.OrderByDescending(a => a); //выполнение запроса foreach(var i in query) { Console.Write("{0} ", i); } Console.WriteLine(); Console.ReadKey(); return 0; } }
10 9 8 7 6 5 4 3 2 1 0