vote up 0 vote down star

I'm working on sorting a list of objects, and unfortunately, I'm not quite getting the information from the debugging to see where I'm going wrong.

I have a custom class that I implemented a CompareTo method in, and I call .Sort() on a List of items of that class. Unfortunately, my program never actually gets to the compareTo() method...it errors out and shutdowns down immediately on the call to the .Sort().

What generally should I be on the look out for?

Here's my class definition, interface listing for the class.

    /// <summary>
/// Summary description for ClientWorkspace.
/// </summary>
public class ClientWorkspace : IStorable
{ }

I didn't list the compareTo method since it never even gets to that code.

flag

2  
Errors out... how? What's the exception? – Michael Meadows Jun 26 at 17:11
What kind of exceptions do you get? – Christopher Jun 26 at 17:12
That's my biggest problem. I can't find the exception. I "step into" the sort call in the debugger and it jumps right to this "Dispose" method in the code I've inherited. Wait...in the dialog box that comes up it says "Failed to compare two elements in the array" Unfortunately, my knowledge of C# at this point isn't strong enough to give more information. – Kivus Jun 26 at 17:21

8 Answers

vote up 5 vote down check

I believe the exception message would be something like this: "Failed to compare two elements in the array" with an innerexception of "At least one object must implement the IComparable interface". This gives you what you need to know:

You haven't declared your class to implement the IComparable interface.

It is not enough to just implement the CompareTo method, since the sorting algorithms will look for the IComparable interface before attempting to call CompareTo through that interface.

...and that is why your method isn't getting called.

link|flag
I figured it would be something like that. I'm getting into the CompareTo method now, so I can debug from here. Thank you. – Kivus Jun 26 at 17:32
vote up 4 vote down

Try making your class implement the IComparable interface.

If a custom class or structure does not implement IComparable, its members cannot be ordered and the sort operation can throw an InvalidOperationException.

Source: MSDN

link|flag
vote up 1 vote down

Your class should implement IComparable or IComparable<> in order for the sort functions to know about your CompareTo() method.

link|flag
vote up 0 vote down

IStorable? What's that? It's not named Sortable in .NET.

public class ClientWorkspace : IComparable<ClientWorkspace>
{ }
link|flag
vote up 0 vote down

Since you're a Java programmer you probably expect the compiler to warn you about possible exceptions that could be thrown by a particular method. Be aware that C# does NOT require you to catch any exceptions. Do this:

try {
  whatever
} catch (Exception e) {
   // put a breakpoint here and examine e.
}
link|flag
Yea..That's something I'm learning as I'm learning java. :/ lol – Zack Jun 26 at 17:24
vote up 0 vote down

Did you implement IComparable or IComparable<ClientWorkspace>?

As an alternative, if you don't want your class to implement that, you can also implement IComparer<ClientWorkspace> in another class, or create a method that matches the Comparer<ClientWorkspace> delegate.

.NET does not have an implicit .compareTo method.

link|flag
vote up 0 vote down

You can implement the IComparable interface and provide an implementation of CompareTo method there. That should do it.

There's an example on MSDN.

link|flag
vote up 0 vote down

Your class needs to implement the IComparable<T> interface. See documentation on MSDN

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.