How can I sort generic list DESC and ASC? With LINQ and without LINQ? I\'m using VS2008.
class Program { static void Main(string[] args) { Li
without linq, use Sort() and then Reverse() it.
Sort()
Reverse()