//using the Sort method, you can sort the elements in the collection. Sort has three overloaded methods that declare the code as follows//display. Public voidSort ();//sort using the comparison of collection elements Public voidSort (IComparer comparer);//sorting using a custom comparer Public voidSort (intIndexintcount, IComparer comparer)//use a custom comparer to sort a specified rangeNote: To sort by using the sort method, all elements in the collection must implement the IComparable interface, otherwise an exception will be thrown. Here we introduce a simple sort instance using the first methodusingSystem;usingSystem.Collections;classprogram{Static voidMain (string[] args) {ArrayList Al=NewArrayList (); Al. AddRange (New string[8] {"Array1","Array2","Array3","Array5","Array4","Array8","Array7","Array6" }); Al. Sort (); foreach(stringSinchal) {Console.WriteLine (s); } console.readline ();}}
ArrayList sorting Sort () method (GO)