किसी सूची को आरोही या अवरोही क्रम में क्रमबद्ध करने के लिए क्रमानुसार शब्द का प्रयोग करें।
निम्नलिखित सूची है -
List<string> myList = new List<string>(); myList.Add("truck"); myList.Add("bus"); myList.Add("bicycle"); myList.Add("motorbike");
अब सूची को अवरोही क्रम में क्रमबद्ध करते हैं -
myLen = from element in myList orderby element.Length descending select element;
यहाँ पूरा कोड है -
उदाहरण
using System; using System.Collections.Generic; using System.Linq; class Demo { static void Main() { List<string> myList = new List<string>(); myList.Add("truck"); myList.Add("bus"); myList.Add("bicycle"); myList.Add("motorbike"); var myLen = from element in myList orderby element.Length select element; Console.WriteLine("Ascending order..."); foreach (string str in myLen){ Console.WriteLine(str); } myLen = from element in myList orderby element.Length descending select element; Console.WriteLine("Descending order..."); foreach (string str in myLen) { Console.WriteLine(str); } } }
आउटपुट
Ascending order... bus truck bicycle motorbike Descending order... motorbike bicycle truck bus