I have a class called Order which has properties such as OrderId, OrderDate, Quantity, and Total. I have a l
Order
OrderId
OrderDate
Quantity
Total
The easiest way I can think of is to use Linq:
List SortedList = objListOrder.OrderBy(o=>o.OrderDate).ToList();