Defines a generalized comparison method that a value type or class implements to create a type-specific comparison method for ordering instances.

learn more… | top users | synonyms

8
votes
1answer
85 views

Why can I not use IComparable<T> on ancestor class and compare child classes?

I'm trying to sort a list of objects using List.Sort(), but at runtime it tells me that it cannot compare elements in the array. Failed to compare two elements in the array Class structure: ...
1
vote
1answer
35 views

Binding ListView to the set of IComparable

I am looking for a smart way of binding a ListView DataSource property to the set (any collection) of IComparable custom objects. I would like to have a control real time responding to changes of my ...
1
vote
1answer
46 views

C# Sorting error while using IComparable

I'm trying for hours to sort an ArrayList using IComparable... Please note that I cant use IComparer to do this. Here is the code : class Pays : IComparable<Pays> { private string ...
0
votes
0answers
28 views

What is the advantage of using ICompareable(T).CompareTo Method over >,<,= operators when comparing int32?

MSDN talks about how ICompareable(T).CompareTo is better than the Int32.CompareTo method but I don't understand why the ICompareable(T).CompareTo method would be better than the comparison operators ...
-9
votes
4answers
76 views

Embedded statement error [duplicate]

I have a simple custom list class and I am trying to implement IComparable to it, but it's not working to be honest. I tried MSDN and other blogs and still same. public class sortDateTime : ...
0
votes
0answers
41 views

Comparing int and long through IComparable interface

I would like to have expression classes that compare two objects and pass the below test. public abstract class ComparisonExpression { public bool Evaluate(IComparable left, object right) { ...
1
vote
1answer
60 views

CompareTo method not working, it won't get AlbumName from the Album class- IComparable issue I think

I'm trying to get my CompareTo method to from Artist class to work, however it won't get AlbumName from the Album class. I'm pretty sure it's an issue with IComparable on the Album class. Please help ...
2
votes
2answers
56 views

IComparable doesn't need to be contravariant?

In the code below i am targetting the .NET 2.0 Framework. I can pass a Programmer (derived) object to the Compare method which expects a Person (base class) But since a Programmer IS A Person ...
1
vote
1answer
229 views

How to make Binary Search Tree with Object as node?

Is there a way you can have a Binary Search Tree with Object nodes, that store multiple values, and which have the ability to treat one of these values as the "main" variable that will be used for ...
4
votes
3answers
129 views

IComparable<T> Does not Implement

I've changed from using IComparable to IComparable<Artist> However I'm getting the error 'RecordCollection.Artist' does not implement interface member 'System.IComparable.CompareTo(object)' ...
0
votes
1answer
46 views

Hide the sort of a collection in VB.NET

In the following example i would like to hide the .sort() method to the client, how could i achieve that ? Namespace test Class Figure Implements IComparable(Of Figure) Public Property Area ...
1
vote
5answers
116 views

Internal working of the Sort() and CompareTo() methods

I've been trying to figure out how the CompareTo() method works internally and I failed. I've searched this site and read some posts, and I think I've seen all there is to see in MSDN about this ...
6
votes
2answers
185 views

List<int> to IEnumerable<IComparable>

I can implicitly cast a int to a IComparable. I can also cast a List or an array to a IEnumerable. But why can't I implicitly cast a List to a IEnumerable? I tested this with the .net framework 4.5 ...
1
vote
5answers
214 views

Sorting objects using IComparable

I am trying to implement the IComparable interface in my custom object so that List.Sort() can sort them alphabetically. My object has a field called _name which is a string type, and I want it to ...
2
votes
2answers
109 views

IComparable<T>.CompareTo compares with null in Sort

I want to sort a list with the help of IComparable<T>.CompareTo for a type T called Path. I wrote var shortest = new List<Path>(); //Fill shortest with elements != null if ...
2
votes
2answers
111 views

IComparable required to sort column

One of the columns in my DevExpress xtragrid is not sorting, grouping or filtering. Answers to similar questions suggest I need to implement IComparable, but when I did that it no longer displays in ...
2
votes
2answers
212 views

CompareTo behaviour for double.NaN and double.NegativeInfinity

I was doing some statistical operations in C# (.Net 4) with double[] then i found some strange behavior with CompareTo method and double.NaN. when I try this code: ...
3
votes
3answers
88 views

how to handle double.NaN for Generic method accepting IComparable in C#

I have a generic GetMinimum method. It accepts array of IComparable type (so it may be string[] or double[]). in the case of double[] how can I implement this method to ignore the double.NaN values? ...
1
vote
1answer
84 views

Is there a means of stamping out IComparable<T> operator overloads without duplicating tons of code?

I've got a bunch of types that implement IComparable<T>. Because these types implement that interface, it makes sense to provide the following overloads: /// <summary>Equality comparison ...
0
votes
3answers
247 views

Extending the comparable generic [closed]

I'm developing a template based classes in Java that implement various trees structure (such as standard binary tree, red-black tree or B-Tree). My idea is to have it done like various lists in Java ...
0
votes
2answers
303 views

Java Comparator override equivalent in c#

I want to convert the following class from java to C#: public class ValueComparator implements Comparator{ @Override public int compare(Object ob1, Object ob2){ int retval = 0; ...
1
vote
2answers
107 views

How many times the CompareTo method is called when a collection is sorted?

If a type implements IComparable<T> and you have a collection of this type with 100 elements. When you call the Sort method on this collection, how many times would the CompareTo method be ...
6
votes
3answers
213 views

Algorithm speed-up using List<T>.Sort and IEnumerable

For my project, I first load an image from file, and put every pixel into a 2D pixels[,] array. Then, I want to examine each pixel and split them up into "bins" based on how they are colored, and then ...
1
vote
1answer
264 views

Where is the inconsistency in this Icomparer that is causing a null reference?

I'm receiving a null object in my custom IComparer implementation despite no null entries in the collection it is being applied to. My understanding is this can be caused by inconsistencies in the ...
4
votes
3answers
198 views

C# generic class and EqualityComparer

Could anyone explain me what's wrong in the following class declaration: private class PriorityQueueEntry<TPriorityValue,IIdentifiableEntry,IType> : ...
-1
votes
3answers
103 views

What interfaces must I implement to make a List<T> or Dictionary<T> concatenate two values as a key

I need to make my custom object work correctly in a Dictionary, List, etc... so that I can change properties of the object, and allow it to be resorted, and not orphaned. The last time I attempted ...
2
votes
2answers
79 views

Binding a generic class to a specific interface

I am trying to make a generic class. Is there a way to make a constraint so that only objects that implement IComparable can be passed into my generic. For example: public class MyClass<T> { } ...
1
vote
1answer
210 views

C# - Dictionary<int, Dictionary<int, string>> sorting is throwing System.ArgumentException

I have an unsorted Dictionary<int, Dictionary<int, string>> and when trying to sort its value's Keys its throwing System.ArgumentException: At least one object must implement IComparable. ...
4
votes
1answer
2k views

“At least one object must implement IComparable” for an INT? As far as I know, it does

Ok, I have a simple IEnumerable<HtmlString> things and I want to divide it up into four equal groups. var quarter = things.Count() / 4; should do the trick, but instead I get this ...
0
votes
5answers
122 views

Implementing IComparable for Dynamic Comparision

I have to get a Circle from a List<Circle> depending on the current MousePosition This is Circle class public class Circle { public Point Center; public ...
2
votes
2answers
130 views

Comparing 3 Objects

I am coding a generic Binary Tree in C#. In one portion of my application I need to sort in order of distance. from A to C and B to C. something like this: if ((A->C) == (B->C)) return ...
1
vote
1answer
113 views

A Modifiable IComparable Implementation?

If I understand correctly, IComparable and IComparable<T> are intended to allow for the definition of a natural or total ordering over a set of types. In either case, the relation defined by ...
0
votes
1answer
154 views

Benefits of IComparable<T> as Contravariant?

I have very little experience with variance, but after having read quite a bit believe that I understand at least the basic concepts (i.e. variance describes the relationship between the relationship ...
-2
votes
2answers
643 views

Cannot cast from source to destination Type

im using a class called PriorityQueue and like the name says it should compare elements and ordain them this is the Comparer class inside priority Queue private class DefaultComparer : IComparer ...
2
votes
3answers
136 views

How to use a generic class for System.Math methods in C#

I am trying to achieve something similar to the following code snippet. As the red line indicates Math.Min for IComparable<T> does not seem to work. I need to use Math.Min or Math.Max for ...
0
votes
4answers
171 views

Comparing two custom objects

public class Filter { public int A { get; set; } public int B { get; set; } public DateTime Start { get; set; } public DateTime End { get; set; } } What is the best way, to compare ...
0
votes
2answers
76 views

IComparable IgnoreCase

I'm writing a function to compare 2 values of IComparable type, and throwing if not equal. Basically, re-making assert. Yes, I'm aware I'm reinventing the wheel. public static void ...
0
votes
3answers
107 views

Problems comparing objects using IComparable

Here is some code I'm trying to get working. If an item in one set doesn't match an item in the other set a 0 is added to a list for all items compared. If in the end the list doesn't contain any ...
2
votes
3answers
229 views

Is it possible to make IEnumerable<char> implement IComparable?

As titled. We all know if we want a class to be comparable and use in sorting i.e DataGrid, we will implement IComparable. But for IEnumerable how can I do that? I have a collection of a ...
0
votes
1answer
150 views

What sorting strategy should I use for this case?

I have a list of strings that presents name of categories that a film belongs to. I make a class define that list, implement List<String> and IComparable interface, in order to use in ...
1
vote
1answer
147 views

Having trouble with a method call and getting a correct value back

the method call in question is within this writeline call at the end Console.WriteLine("Taxpayer # {0} SSN: {1}, Income is {2:c}, Tax is {3:c}", i + 1, taxArray[i].SSN, taxArray[i].grossIncome, ...
1
vote
3answers
458 views

Sort a list of interface objects

I have a couple of classes that implement an interface, IFoo. I need to display a list of objects of these classes in a table, which I'd like to be able to sort by any arbitrary column in the table. ...
0
votes
2answers
469 views

Code Contracts — Requires/Ensures unproven when I use IComparable or IComparable<T>

I have the following method: public static bool IsBetween<T>(this IComparable<T> value, T lowerBound, T upperBound) where T : IComparable<T> { ...
5
votes
2answers
171 views

Generic constraints — I'm not sure how to fix this situation with an either/or case

Basically I have the following: public static bool IsBetween<T>(this T value, T a, T b) where T : IComparable { ... } public static bool IsBetween<T>(this T value, T a, T b) ...
1
vote
2answers
112 views

list is not getting sorted using IComparable<T>

This is my abstract base class: public abstract class BaseDataModel<T> : System.IComparable<T> where T : BaseDataModel<T> { public int ID { get; set; } public int CreatedBy ...
1
vote
3answers
597 views

Implementing Icomparable Interface for generic class

I am not able to find out as to how to implement the IComparable interface method CompareTo for a generic class. I have a class called BindingProperty<T> which is used to create a ...
6
votes
2answers
1k views

Generics and Implementing IComparable

I am very new to generics and I am trying to write a simple class which will be generic but also allow sorting of some description on a string member variable. At the moment I have a basic class but ...
0
votes
3answers
403 views

Sort an ArrayList of Objects in C#

How can I sort an ArrayList of objects? I have implemented the IComparable interface while sorting the ArrayList, but I am not getting the required result. My code sample: public class Sort : ...
1
vote
2answers
135 views

why do we need Icomparable interface?

Please clarify, we can have our own method to compare two objects instead implementing interface.Also what is the significance of interfaces?
-2
votes
2answers
342 views

Implementing Icomparable on a Taxpayer class to sort based on taxOwed

i am not being able to implemenet Icomparable CompareTo to compare Taxpayer objects based on tax owed ..can someone help me with the icomparable implementatioin of Taxpayer class?? I want to implement ...

1 2 3