ArrayList sorting Sort () method (GO)

Source: Internet
Author: User

//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)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.