Sorting an Array of Custom Objects in C#
page 3 of 4
by Sandesh Meda
Feedback
Average Rating: This article has not yet been rated.
Views (Total / Last 10 Days): 16626/ 272

Method 2: Using the IComparer Interface

Sometimes, it might be necessary to have more flexibility in your sorting, for example, to provide which property you want to sort the Car array by. In situations like this, we would need to use the IComparer interface and use the overloaded Sort method that takes the comparer instance as an argument.

Step 1: Create a CarComparer class that implements the IComparer interface

Listing 6

class CarComparer: IComparer
{
  public enum ComparisonType
  {
    Make = 1, Year, Location
  }
 
  public ComparisonType ComparisonMethod
  {
    set;
    get;
  }
 
  public int Compare(object x, object y)
  {
    Car c1;
    Car c2;
 
    if (x is Car)
      c1 = x as Car;
    else
      throw new ArgumentException("Object is not of type Car.");
 
    if (y is Car)
      c2 = y as Car;
    else
      throw new ArgumentException("Object is not of type Car.");
 
    return c1.CompareTo(c2, ComparisonMethod);
  }
}

The main purpose of the CarComparer is to keep track of by what property we are sorting. It has a ComparisonType enum that has the property elements and an overloaded Compare method.

Step 2

Add an overloaded CompareTo to the Car class as shown in Listing 7.

Listing 7

public int CompareTo(Car c2, CarComparer.ComparisonType comparisonType)
{
  switch (comparisonType)
  {
    case CarComparer.ComparisonType.Make:
      return Make.CompareTo(c2.Make);
    case CarComparer.ComparisonType.Year:
      return Year.CompareTo(c2.Year);
    case CarComparer.ComparisonType.Location:
      return Location.CompareTo(c2.Location);
    default:
      return Make.CompareTo(c2.Make);
  }
}

That is it, we are done. We now have added the ability to sort by Make, Year or Location. Let us test it out.

Step 3

Listing 8

Car objCar = new Car();
ArrayList carArray = new ArrayList();
 
objCar.Make = "BMW";
objCar.Year = 2008;
objCar.Location = "Florida";
carArray.Add(objCar);
objCar = null;
objCar = new Car();
objCar.Make = "Honda";
objCar.Year = 1996;
objCar.Location = "Illinois";
carArray.Add(objCar);
objCar = null;
 
objCar = new Car();
objCar.Make = "Corvette";
objCar.Year = 2006;
objCar.Location = "ZZ";
carArray.Add(objCar);
objCar = null;
 
CarComparer carComparer = new CarComparer();
carComparer.ComparisonMethod = CarComparer.ComparisonType.Location;
carArray.Sort(carComparer);

We use the overloaded Sort method that takes an instance of the CarComparer class. To sort by other properties, change the ComparisonMethod as shown below.

carComparer.ComparisonMethod = CarComparer.ComparisonType.Year

View Entire Article

Article Feedback

Title:  
Name:  
Url: ( Optional )
Comment:  
Please add 4 and 1 and type the answer here:

User Comments

Title: Mast hai   
Name: Niraj kumar
Date: 6/5/2009 8:58:00 AM
Comment:
Best explanation
Title: Well Done   
Name: jj
Date: 6/3/2009 2:28:54 AM
Comment:
This is good work
Title: Excelent   
Name: Awais Ranjha
Date: 5/11/2009 4:52:25 PM
Comment:
This is a great help. i am really thankful to the author. Really excellent article. Thanks a lot!
Title: Coustom object   
Name: shatendra singh
Date: 5/2/2009 6:34:28 AM
Comment:
this is very well artical.
Title: Great   
Name: Anton
Date: 1/14/2009 2:13:57 PM
Comment:
Thnx, very helpful
Title: great explanation   
Name: Aga
Date: 11/28/2008 11:50:20 PM
Comment:
Thanks so much for giving great explanation of the subject!
Title: Useful one   
Name: Chennai Tours Travels
Date: 10/20/2008 3:56:09 AM
Comment:
Nice explanation Sandesh Meda
Good effort ..
Title: Nice one   
Name: Ravi Sadalagi
Date: 8/12/2008 6:05:44 AM
Comment:
good one thank you..
Title: Excellent   
Name: Nancy
Date: 8/11/2008 10:23:58 AM
Comment:
Makes a great attempt to explain sorting an array of custom objects in a very easy understandable way. Really excellent article. Thanks a lot!
Title: Mr   
Name: Amook Vandan
Date: 8/11/2008 4:46:47 AM
Comment:
good article
Title: good   
Name: Neetu Tiwari
Date: 8/9/2008 6:55:21 AM
Comment:
Its good.....thanks
Title: Mr   
Name: Priyan R
Date: 7/29/2008 2:18:41 AM
Comment:
Hi thanks good article

Product Spotlight
Product Spotlight 






Community Advice: ASP | SQL | XML | Regular Expressions | Windows


©Copyright 1998-2009 ASPAlliance.com  |  Page Processed at 11/21/2009 5:54:06 AM  AspAlliance Recent Articles RSS Feed
About ASPAlliance | Newsgroups | Advertise | Authors | Email Lists | Feedback | Link To Us | Privacy | Search