IComparer is an interface provided by the .NET framework, used in conjunction with the Array.Sort and Array.BinarySearch methods. It provides a way to customize the sort order of a collection. It contains a single Compare method that compares two objects and returns a value indicating whether one is ...

learn more… | top users | synonyms

-4
votes
3answers
99 views

How to implement IComparer in C# for an interface [closed]

I have an interface named IEmployee. I need to implement the IComparer to the implementation of my interface. Here is my code, interface IEmployee { String Name {get;set;} DateTime ...
4
votes
1answer
75 views

IComparer issue

I have a weird issue and I don't have a clue to track the reason. I will try to descript my issue clearly. I have a RTree class, in this class, I want to compare two rectanlge (here I called ...
0
votes
2answers
39 views

List of all uncommon elements in arraylist

I have 2 ArrayList, which contains the filenames, now one list has more names and other might have less, or sometime equal, i want to list the filenames which are not common in both arraylist and ...
0
votes
1answer
39 views

Custom IComparer

I'm wanting to create a IComparer<string> for a SortedDictionary<string, int> that will sort everything alphabetically but if it see a key of 'Other' it will put 'Other' at the end of the ...
7
votes
2answers
145 views

What should IComparer return to indicate “keep the existing sort order”

I'm implementing a custom comparer in order to apply a custom sort order for items in various views. Some of the time I'm finding that I want to maintain the existing order of items, in this case ...
0
votes
3answers
54 views

How can I use an IComparer<T> to sort by arbitrary values?

I receive a sorted list of integers which I would like to use to sort a ListCollectionView via ListCollectionView.CustomSort. This property accepts an IComparer and I've created one but, as expected, ...
0
votes
2answers
70 views

How can I change the sort order using an IComparer in .NET

I'm sure this is simple but it has me stumped. I want, simplified, to sort my alphabet but putting Ds between As and Bs. I think I want a custom IComparer to do this. How would I finish this ...
0
votes
2answers
40 views

Sorting custom list with bool

There is a class public class Camera { ... public bool live; ... } This is the sorting class public class CameraSortByLive : IComparer<Camera> { private bool asc; ...
2
votes
3answers
90 views

C# Sorting/comparing items

I have a class (Patch) that I want to have sorted so I implemented IComparer. However, it needs to be sorted depending on how the user wants it, e.g.: - key1, key2, key3 - key1, key3, key2 For each ...
3
votes
4answers
144 views

Implementing IComparer combining multiple Linq OrderBy's

My problem is that I always want to order a collection of objects in a certain fashion. For example: class foo{ public string name {get;set;} public DateTime date {get;set;} public int counter ...
1
vote
3answers
216 views

Implementing custom IComparer<> (with example)

Ive just written the following code, which will order strings by their native string.Compare() but allow a collection of exceptions (in this case customPriority) that will place priority over the ...
3
votes
1answer
122 views

Natural Sorting Issue

I have been trying to use the code borrowed from here to sort out a collection of a custom object with my application. Generally the sorting works fine until i encounter the following strings ...
1
vote
2answers
57 views

How can I change the Comparer of ASP.NET's Request.Form collection?

ASP.NET's Request.Form["key"] collection uses a case-insensitive Comparer. This is screwing me up because I've got form POST data that looks like: ...
1
vote
2answers
68 views

Is there a quick, easy and free way to auto-generate an IComparable<T> implementation for a C# class?

I know that Resharper can code-gen a comparer implementation (and does a really great job of it), but I'm looking for a free way to do the same. I've got a customer who is not likely to invest 250$ ...
1
vote
2answers
94 views

Using IComparer for sorting

I am trying to use an IComparer to sort a list of Points. Here is the IComparer class: public class CoordinatesBasedComparer : IComparer { public int Compare(Object q, Object r) { ...
1
vote
1answer
59 views

Using IComparable in vb.net for comparing weapons for Rock, Paper and Scissors game (same as Comparable in JAVA)

I'm new to programming and OOP so please forgive me for my lack of knowledge. As part of my Rock, Paper and Scissors game I would like to create a abstract superclass (Weapon) which has subclasses ...
4
votes
3answers
212 views

Sorting List with Custom object by another List using IComparer

My question is about the IComparer interface, I never worked with it before, so I hope you can help me set up everything right. I have to use the interface to sort an list of own objects by the exact ...
1
vote
1answer
244 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
192 views

C# generic class and EqualityComparer

Could anyone explain me what's wrong in the following class declaration: private class PriorityQueueEntry<TPriorityValue,IIdentifiableEntry,IType> : ...
0
votes
1answer
165 views

How do I use a custom comparer with the Linq Distinct method?

I was reading a book about Linq, and saw that the Distinct method has an overload that takes a comparer. This would be a good solution to a problem I have where I want to get the distinct entities ...
0
votes
2answers
58 views

How to specify an IComparer for a particular property on a model that can be used for Silverlight DataGrid column sorting

I have a Silverlight datagrid with a column who's binding is set to a string property on the model. These strings are alphanumeric, so I have created a custom IComparer to sort them appropriately. My ...
0
votes
2answers
223 views

IComparable with Enums sent as generic type parameters (C#) [duplicate]

Possible Duplicate: When are two enums equal in C#? I have the following classes as part of a simple state machine. Please note that all generic type parameters HAVE to be an enumeration. ...
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 ...
0
votes
0answers
129 views

How to merge two xelement in linq to xml?

my first xelement is: i have used Union but i can not reach to true answer how can i use comparer and union or concat? <V> <Uri>RksyMaJiD8Y</Uri> <Time> ...
0
votes
1answer
641 views

IComparer, OrderBy and Linq

I have a custom comparer I want to use with OrderBy. This comparer enables to sort nested lists the way I want. I perfectly works somewhere else, but I can't make it work the way I want with Linq. Can ...
1
vote
1answer
152 views

SortedList Compare

I have two sortedlists 1. oldlist<int,int> 2. newlist <int,int> (application specific information - key is industryId and value is weight) I want to compare the changes in the ...
1
vote
3answers
437 views

Ordering ObservableCollection with Linq and IComparer

I want to order alphabetically an ObservableCollection because I don't wanna have to create another binding. I've seen we could use Linq and the method OrderBy. I would like also to use a personal ...
0
votes
5answers
130 views

IComparer sorting by different criterias

I have a ListView and I am trying to sort them where items with a BackColor of red would be first, and then items with a ForeColor of red, and lastly the rest of the items, but all of them should be ...
0
votes
1answer
138 views

Possible issue with IComparer and SortedDictionary

I am trying to create a SortedDictionary where its key is a string that represents a File/Folder path. I am trying to sort that dictionary based on path depths. My criteria just checks for the number ...
0
votes
1answer
269 views

Sort/orderby nodes in xml using IComparer

I need to sort nodes in xml. I have the following code which successfully orders them alphabetically. However, much of the data is numeric although strings are allowed. I have a IComparer set up ...
0
votes
2answers
321 views

Sorting Windows.Forms.ListView by second column

I want to sort ListView items by the content of second column (which can be either "Online" or "Offline"). Sorting will be done only in one specific place in code, so the solution doesn't have to be ...
1
vote
1answer
663 views

Implementing generic IComparer in VB

I am trying to create a class implementing the generic IComparer of my own class "Stellungen" (which translates to positions, like on a chess or checkers board). This is what I got: Private Class ...
2
votes
4answers
140 views

Is it possible in C# to provide an IComparer implementation and somehow have it “compiled” into the application at runtime?

Hi everyone I am not sure if what I want to do is even remotely possible but I am going to do my best to explain it and would really appreciate any suggestions / ideas, Imagine I have :- public ...
0
votes
1answer
687 views

Implementing iComparer for custom objects after converting a Dictionary to SortedDictionary

I'm having trouble implementing an IComparer method. Essentially, I want to compare the properties of two custom objects (the properties are of type integer). dE is a Dictionary(Of String, ...
0
votes
3answers
56 views

How to pass function to compare items?

I would like to pass a comparer into a function and not sure if this is possible with Javascript. There is an IComparer concept in C# that does this. Can this be done in Javascript? function ...
0
votes
1answer
100 views

How to implement the equivalent functionality to a custom IComparer for Linq to Entities OrderBy()?

How can I implement the equivalent to a custom IComparer for Linq to Entities OrderBy()? A custom comparer is not supported in Linq to Entities as MSDN documentation states: Most of the LINQ ...
6
votes
3answers
478 views

LINQ OrderBy anonymous object with projection comparer

Ive been trying to get OrderBy in a LINQ statement to work with an anonymous object but have failed by now. I checked these already: Anonymous IComparer implementation C# linq sort - quick way of ...
0
votes
1answer
68 views

How can I change the default IComparer in an MVC project?

In an ASP.net MVC3 project I have a custom implementation of the IComparer interface. I want to use my comaprer by default when strings are sorted. How can I change the default IComparer for the ...
0
votes
2answers
239 views

IComparer based on property of an interface

I have created a class Car that derives form the abstract class TransportMeans and implements an interface PrivateMeans which contains only one property: interface PrivateMean { int capacity { set; ...
0
votes
2answers
48 views

Can't create Comparer

I have a class public class PAUserAllowedTimesModel { public List<AllowedTime> Times { get; set; } public List<AllowedTime> BusyTimes { get; set; } public DateTime ...
2
votes
2answers
2k views

Implementing custom IComparer with string

I have a collection of strings in c#, for example; var example = new string[]{"c", "b", "a", "d"}; I then with to sort this, but my IComparer method is not working, and looping infinitely by the ...
2
votes
6answers
254 views

C# sorting a arraylist with figures

Hello i do want a sort an array, that contains this: String[] info = new String[5]{"6,j", "7,d", "12,s", "4,h", "14,s" }; But if i use this: Array.Sort(info); The output becomes: "7,d" "6,j" ...
1
vote
2answers
546 views

How to sort an object in a list on a non-unique value?

I'm trying to categorize articles by stored keywords. I have a list of keywords for a category, and I want an article to get assigned a category that has the most keyword count. For Each keyword As ...
2
votes
3answers
481 views

Why doesn't List.BinarySearch() have overloads that take Comparison<T> in addition to IComparer<T>?

I want to use List.BinarySearch() with a custom item type. The custom type does not implement IComparable<T>; instead I have several static Comparison<T> functions that I call because at ...
1
vote
1answer
132 views

Sorting issue within a hierarchy of elements in C#

I've been working on a page in ASP.NET. This page behaves exactly like a forum. A user can reply to entries. A reply is represented as an ItemReply. When a user replys to an item, the ParentID is set ...
2
votes
1answer
563 views

C# SortedList, getting value by key

I have SortedList in descending order. public class MyComparer : IComparer<int> { public int Compare(int x, int y) { if (x.CompareTo(y) > 0) ...
1
vote
7answers
144 views

C# IComparer is returning unexpected result when comparing same strings

I have a situation where all of my list members have same ID (Id is string and not Integer). As part of business rules I need to sort the list in ascending order. My original implementation is quite ...
0
votes
1answer
90 views

Custom Comparer against a parameter failing

I am trying to write a custom comparer to sort a list of search results based on similarity. I would like the term most like the entered search term to appear first in the list, followed by phrases ...
4
votes
4answers
317 views

In the List<T>.Sort() method, is an item ever compared to itself?

If I pass in a custom IComparer to an instance of a List's Sort() method, will the comparer's Compare(x,y) method ever be called with the same item? ie. Is it possible that Compare(x,x) may be ...
1
vote
2answers
2k views

How to use List.Sort and Comparision(of T) to sort Descensing/Ascending?

I have a MyObject; myObjects as List(Of MyObject) and a delegate Comparison(Of MyObject) that uses a lot of comparison functions (ByA, ByB, ByC etc) à la: Shared Function CompareMyObjectsByName(x As ...

1 2