Sorting Algorithms
http://www.codeproject.com/Articles/79040/Sorting-Algorithms-Codes-in-C-NET static void Main(string[] args) { List<int> objList = new List<int> { 2, 6, 3, 7, 1, 8, }; foreach (int a in objList) { Console.WriteLine("Before sort : {0}",a); } Console.WriteLine(" "); List<int> objSortedList = bubblesort(objList); foreach (int a in objSortedList) { Console.WriteLine("After sort : {0}", a); ...