Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
7answers
5k views

When to use IComparable<T> Vs. IComparer<T>

I'm trying to figure out which of these interfaces I need to implement. They both essentially do the same thing. When would I use one over the other?
14
votes
4answers
2k views

What's the difference between IComparable & IEquatable interfaces?

both the interfaces seem to compare objects for equality, so what's the major differences between them?
13
votes
3answers
419 views

What problem does IStructuralEquatable and IStructuralComparable solve?

I've noticed these two interfaces, and several associated classes, have been added in .NET 4. They seem a bit superfluous to me; I've read several blogs about them, but I still can't figure out what ...
11
votes
2answers
226 views

IComparable and IComparable<T>

Should I implement both IComparable and the generic IComparable<T>? Are there any limitations if I only implement one of them?
11
votes
3answers
759 views

Should IEquatable<T>, IComparable<T> be implemented on non-sealed classes?

Anyone have any opinions on whether or not IEquatable<T> or IComparable<T> should generally require that T is sealed (if it's a class)? This question occurred to me since I'm writing a ...
8
votes
5answers
619 views

Interface constraint for IComparable

When I want to constraint the type T to be comparable, should I use: where T : IComparable or where T : IComparable<T> I can't get my head around if #2 makes sense. Anyone can explain what ...
7
votes
3answers
6k views

C# modify List.Contains behavior

I have a List<MyObj> with the class MyObj : IComparable. I wrote the method CompareTo in the MyObj class per the IComparable interface, but when I use the ...
6
votes
3answers
128 views

Implementing IComparable<NotSelf>

This might be a trivial question, but I didn't find any information about this: is it "harmful" or considered bad practice to make a type T implement IComparable<S> (T and S being two different ...
6
votes
6answers
886 views

Compare/count values in a System.Collections.ArrayList

I'm scrubbing 5 files for a specific value. I dont anticipate any different values, BUT since this is for my own educational purposes, I would like the application to count, compare and print the ...
6
votes
5answers
4k views

How do I use the IComparable interface?

I need a basic example of how to use the IComparable interface so that I can sort in ascending or descending order and by different fields of the object type I'm sorting.
5
votes
2answers
138 views

IComparable behaviour for null arguments

I'm implementing IComparable and IComprable<T> in one of my classes. Is there any recommendation on how the CompareTo method in each case should behave when given a null argument? Should it ...
5
votes
2answers
118 views

Assuming this != null when implementing IComparable<T>

I have an object of type T which implements IComparable<T>. Is it okay when implementing bool Equals (T obj) to ommit the check if (ReferenceEquals(this, null)) { DoSomething() }? Can I assume ...
5
votes
4answers
537 views

Why does Java's TreeSet not specify that its type parameter must extend Comparable?

e.g. The code below throws a ClassCastException when the second Object is added to the TreeSet. Couldn't TreeSet have been written so that the type parameter can only be a Comparable type? i.e. ...
4
votes
3answers
116 views

How can I use “is” to test if a type supports IComparable?

I want to check if a type supports IComparable before sorting it, but I've found that checking if a type supports the IComparable interface using "is" does not always give me the correct answer. For ...
4
votes
6answers
285 views

C# generics: How to compare values of generic types?

I realize there are already a handful of questions related to this seemingly simple problem - but none of the threads gives an exhaustive or workable answer, so here I have it reduced to a minimal ...
4
votes
2answers
162 views

What sorting algorithm does the .NET framework implement

Could anyone please advise when implementing something like IComparable in .NET what sorting algorithm does .NET use to actually sort the underlying data? Also is the algorithm used customizable or ...
4
votes
5answers
182 views

Where is my IComparable Implementation going wrong?

namespace SortableLists { using System; using System.Collections.Generic; public class Program { private static void Main() { var list = new List<ListItem> ...
4
votes
4answers
1k views

C# - How to implement multiple comparers for an IComparable<T> class?

I have a class that implements IComparable. public class MyClass : IComparable<MyClass> { public int CompareTo(MyClass c) { return this.whatever.CompareTo(c.whatever); } ...
4
votes
3answers
522 views

F# Set using custom class

I'm trying to use Set operations with a class that I have. Every instance of this class has a unique ID. Do I need to implement the System.IComparable interface and if so how would I? type ...
3
votes
4answers
228 views

Sorting IComparable objects some of which are null

Most people, when writing a refence type (class) which implements IComparable<T>, use the convention that null is LESS than any actual object. But if you try to use the opposite convention, ...
3
votes
1answer
223 views

Implementing custom comparison with CustomComparison and CustomEquality in F# tuple

I'm here to ask a specific topic - I really found few info about this on the web. I'm implementing a F# version of Minimax algorithm. The problem I'm having now is that I want to compare Leaf of my ...
3
votes
4answers
447 views

Problems with implementing generic IEnumerator and IComparable

I'm working on an AVL Tree. The tree itself seems to be working but I need a iterator to walk through the values of the tree. Therefore I tried to implement the IEnumerator interace. Unfortunately I ...
3
votes
4answers
4k views

How to Naturally Sort a DataView with something like IComparable

My DataView is acting funny and it is sorting things alphabetically and I need it to sort things numerically. I have looked all across the web for this one and found many ideas on how to sort it with ...
2
votes
3answers
100 views

Compare() mehtod, Parent and Children objects sorting not perfect

I have this homework. And I am beginner C# program, and now learn the C# and Java Homework: Write static method that get a Drink[] array, where the AlcoholDrink has got different alcohol values. The ...
2
votes
2answers
277 views

Customize sorting of Treeview

I have a treeview that need to be sorted according to the tag of every node and also according to the alpha beta. for example: Node1 , tag=A , text= Apple Node2, tag=B , text= Baloon Node3, ...
2
votes
5answers
575 views

difference between IComparable and IComparer

what is the difference between IComparable and IComparer Interfaces? Is it necessary to use this interface always with Array.Sort() method
2
votes
4answers
291 views

Why is my List.Sort method in C# reversing the order of my list?

I have a list of items in a generic list: A1 (sort index 1) A2 (sort index 2) B1 (sort index 3) B2 (sort index 3) B3 (sort index 3) The comparator on them takes the form: ...
2
votes
1answer
260 views

C# Binary Search on 2 indexes

I have an object with attributes ; startIndex, endIndex I am able to do binary search based on startIndex by implementing the following : int IComparable.CompareTo(object obj) { ...
2
votes
2answers
630 views

Problems with sort and IComparable

I'm trying to sort an ArrayList of custom items and get 'At least one object must implement IComparable.' despite having implemented the IComparable interface for them. I'm just calling the default ...
2
votes
2answers
359 views

SortedList that just takes IComparable<T>

I have an interface IScriptItem that implements IComparable<IQueueItem>. In my eyes it would seem enough to have IComparable items in order to have a sorted anything. But all I can find is ...
2
votes
2answers
270 views

FxCop and IComparable/IComparable<T>

I'm currently investigating the use of FxCop with one of our existing projects and am getting an odd result. The output displays a small number of breaches of the 'Override methods on comparable ...
2
votes
1answer
252 views

Comparing generic fields

I have some generic types, like the following: public struct Tuple<T1, T2> { ... } public struct Tuple<T1, T2, T3> { ... } etc. These should in theory be able to compare themselves ...
2
votes
3answers
809 views

C# boxing question

First, two examples: // This works int foo = 43; long lFoo = foo; // This doesn't object foo = (int)43; long? nullFoo = foo as long?; // returns null long lFoo = (long)foo; // throws ...
1
vote
1answer
79 views

C# Sorting Objects By A Value

I want to hold a list of CollidableActor objects, sorted by their property ".Position.X". I am wondering on what would be the quickest (most efficient) method of doing this. At first I was thinking ...
1
vote
1answer
15 views

How do I implement my special ordering as CompareTo

So I have following struct public struct Foo { public readonly int FirstLevel; public readonly int SecondLevel; public readonly int ThirdLevel; public readonly int FourthLevel; } ...
1
vote
3answers
234 views

How to find max value in a column in a datarow[] ?

I have a simple problem but I just don't understand any of the examples I find here or in MSDN. (I'm still new to C# and all the datasets functions). I have a datatable "tblRoom" which its columms ...
1
vote
3answers
181 views

Problem comparing items implementing IComparable

I am working on a extension method where it finds the min item by specific selector. Below the code public static T MinBy<T, K>(this IEnumerable<T> src, Func<T, K> selector) ...
1
vote
2answers
902 views

Nullable generic type used with IComparable. Is it possible?

I'm trying to create a simple Clamp (so that I can bound the values of anything comparable ... mostly for number types such as int, double, etc.) The problem is if I do the following I get an error, ...
1
vote
6answers
657 views

C#: IComparable implementation private

I'm new to C# so this might be a really dump question: I implemented IComparable in my class and want to test it with NUnit. But the CompareTo-Method is marked as private and thus not accessible from ...
1
vote
1answer
442 views

C#: Range intersection when endpoints are null (infinity)

Ok, I have these intersection methods to work with ranges, and they work well as long as the range endpoints are not null: public static bool Intersects<T>(this Range<T> first, ...
1
vote
2answers
6k views

Using CompareTo() to sort based on multiple columns

Currently I have an object implementing the IComparable interface (ASP.NET 3.5, VB). When I place several instantiated objects into a Generics list, I sort them by doing a simple someList.Sort. My ...
1
vote
1answer
740 views

Converting double array to IComparable array

I'm trying to create a Quicksort base class using VB.NET, taking it an array of IComparable elements. The signature looks like this: public shared sub Sort(ByVal values() as IComparable) ...
1
vote
2answers
400 views

How to Naturally/Numerically Sort a DataView?

I am wondering how to naturally sort a DataView... I really need help on this. I found articles out there that can do lists with IComparable, but I need to sort the numbers in my dataview. They are ...
0
votes
3answers
68 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 : ...
0
votes
2answers
32 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?
0
votes
2answers
56 views

IComparable<T> gives stackoverflow when used for negative numbers?

This is a weired problem, I have implemented simple quick sort as follows.. static void Main(string[] args) { List<int> unsorted = new List<int> { 1, 3, 5, 7, 9, 8, 6, ...
0
votes
0answers
27 views

Apply IComparable on a single column in multi-column sort

I have a scenario where I am currently sorting a list in JqGrid using CustomDefaultSort property provided by Lib.Web.Mvc.JQuery.JqGrid. I have specified multiple columns in this property, e.g. ...
0
votes
0answers
72 views

Sorting negative and positive numbers with IComparible in vb.net

New to programming here so take it easy on me. I have a structure array which has a decimal variable I'd like to sort based on the decimal. Here's what I have so far: Structure individual ...
0
votes
4answers
148 views

Can I check if an object is comparable to some other type?

I'd like to write some code like this: if (obj.IsComparableTo(integer)) Console.Write("successed"); Is this possible? If not, is there an alternative way of determining this?
0
votes
2answers
79 views

What are the operators <,> supposed to do with one or both objects being set to 'Nothing'?

Using 2 objects of the same type, I'm trying to implement < and >, but I can't seem to find any authoritative source on what to do with either or both being Nothing. In other words what the ...

1 2