order by generic list c# code example
Example 1: built in methods to order a list c#
using System.Linq;
List<Order> objListOrder = new List<Order>();
List<Order> SortedList = objListOrder.OrderBy(o=>o.OrderDate).ToList();
List<Order> SortedList = objListOrder.OrderByDescending(o=>o.OrderDate).ToList();
Example 2: list sorting c#
using System.Linq;
myList.Sort();
myList.Sort();
myList.Reverse();
public int CompareTo(MyClass other)
{
return this.totalScore.CompareTo(other.varInClass)
}
Example 3: c# sort list
using System;
class Program
{
static void Main()
{
string[] colors = new string[]
{
"orange",
"blue",
"yellow",
"aqua",
"red"
};
Array.Sort(colors);
foreach (string color in colors)
{
Console.WriteLine(color);
}
}
}