C # overriding IComparer interface

Source: Internet
Author: User

First define the comparison class inherits from Icomparer<racer>

1  Public classRacercomparer:icomparer<racer>2     {3          Public enumComparetype4         {5 FirstName, LastName, country, Wins6         }7         PrivateComparetype Comparetype;8          Publicracercomparer (comparetype comparetype)9         {Ten              This. Comparetype =Comparetype; One         } A          Public intCompare (Racer x, Racer y) -         { -             if(x = =NULL&& y = =NULL)return 0; the             if(x = =NULL)return-1; -             if(Y = =NULL)return 1; -  -             intresult; +             Switch(Comparetype) -             { +                  CaseComparetype.firstname: A                     return string. Compare (X.firstname, y.firstname); at                  CaseComparetype.lastname: -                     return string. Compare (X.lastname, y.lastname); -                  CaseComparetype.country: -result =string. Compare (X.country, y.country); -                     if(Result = =0) -                         return string. Compare (X.lastname, y.lastname); in                     Else -                         returnresult; to                  CaseComparetype.wins: +                     returnX.wins.compareto (y.wins); -                 default: the                     Throw NewArgumentException ("Invalid Compare Type"); *             } $         }Panax Notoginseng}
View Code
1 classRacer:icomparable<racer>2     {3          Public intId {Get;Private Set; }4          Public stringFirstName {Get;Set; }5          Public stringLastName {Get;Set; }6          Public stringCountry {Get;Set; }7          Public intWins {Get;Set; }8          Public Override stringToString ()9         {Ten             returnString.Format ("{0} {1}", FirstName, LastName); One         } A          PublicRacer (intIdstringFirstName,stringLastName,stringcountry) -: This(ID, FirstName, lastName, country, wins:0) -         { the         } -          PublicRacer (intIdstringFirstName,stringLastName,stringCountry,intwins) -         { -              This. Id =ID; +              This. FirstName =FirstName; -              This. LastName =LastName; +              This. Country =Country; A              This. Wins =wins; at         } -          Public intCompareTo (Racer other) -         { -             if(Other = =NULL)return-1; -             intCompare =string. Compare ( This. LastName, other. LastName); -             if(Compare = =0) in                 return string. Compare ( This. FirstName, other. FirstName); -             returnCompare; to         } +}
View Code

Call comparison method

1  varGraham =NewRacer (7,"Graham","Hill","UK", -);2             varEmerson =NewRacer ( -,"Emerson","Fittipaldi","Brazil", -);3             varMario =NewRacer ( -,"Mario","Andretti","USA", A);4 5             varRacers =NewList<racer> ( -) {Graham, Emerson, Mario};6Racers. Sort (NewRacercomparer (RacerComparer.CompareType.Country));
View Code

C # overriding IComparer interface

Related Article

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.