Tagged Questions
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 less than, equal to, or greater than the other. There is also a generic version of this interface. Supported in .NET 4, 3.5, 3.0, 2.0, 1.1, 1.0. Source: MSDN
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?
17
votes
5answers
696 views
Advantages/Disadvantages of different implementations for Comparing Objects using .NET
This questions involves 2 different implementations of essentially the same code.
First, using delegate to create a Comparison method that can be used as a parameter when sorting a collection of ...
9
votes
7answers
2k views
Shuffle using IComparer
First of all, I do know about the Fisher-Yates shuffle. But lets say for arguments sake that I want to allow the user to pick a sort option from a Dropdown list. This list would include a "Random" ...
8
votes
3answers
2k views
C# lambda expressions and IComparer
I am using lambda expressions to sort and search an array in C#. I don't want to implement the IComparer interface in my class, because I need to sort and search on multiple member fields.
class ...
7
votes
1answer
138 views
Quick IComparer?
Before I go reinventing the wheel, is there some framework way of creating an IComparer<T> from a Func<T,T,int>?
EDIT
IIRC (it's been a while) Java supports anonymous interface ...
7
votes
3answers
608 views
LINQ orderby vs IComparer
I would like to know what is better to use.
IComparer class and Compare method for sort or LINQ orderby on List. Both works fine but which one is better for large lists.
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
376 views
Effectively disable Sort() within a CompareTo() override?
The CompareTo() method for my class is dynamic, and can range from a simple comparison to comparisons on a number of columns. This is all determined at run time, and it works great.
But in some ...
5
votes
4answers
9k views
Use own IComparer<T> with Linq OrderBy
I have a generic
List<MyClass>
where MyClass has a property "InvoiceNumber" which contains values like:
200906/1
200906/2
..
200906/10
200906/11
200906/12
My list is bound to a
...
4
votes
4answers
127 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 ...
3
votes
4answers
346 views
C# IComparer<T> standard usage question
I have a question with whether or not this is a standard for using IComparer in C#. Say I have a situation in which there are three Person objects: P1, P2, and P3. Say I call the Compare method ...
3
votes
5answers
2k views
using Comparer to sort IEnumerable in C# by different fields
I have a list of an object which need to be sorted depending on three different properties of the object.
Example
CLass Object1{ Property1 , Property2, Property3}
ListObj = ...
3
votes
3answers
166 views
Is there a reasonable scenario for a stateful IComparer<T>?
I have never written a stateful IComparer<T> with a default constructor. All standard library implementations which I've checked in Reflector are stateless as well. Therefore, I'd like to assume ...
2
votes
6answers
99 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"
...
2
votes
1answer
74 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)
...
2
votes
5answers
560 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
98 views
Should a custom comparer for strings allow for null values
I'm looking at someone elses code for a custom comparer that compares strings.
I'm noticing that it will fall over if at least one of the string parameters is null.
The compare returns -1, 0 or 1 ...
2
votes
2answers
521 views
IComparable and OrderBy. Trying to sort Poker hands with C#
I am attempting to create a simple program that analyzes the poker hands. Given n hands/players and the community cards (Texas hold 'em) I would like to determine the winner(s). However, my test is ...
2
votes
5answers
3k views
Pass a lambda expression in place of IComparer or IEqualityComparer or any single-method interface?
I happened to have seen some code where this guy passed a lambda expression to a ArrayList.Sort(IComparer here) or a IEnumerable.SequenceEqual(IEnumerable list, IEqualityComparer here) where an ...
2
votes
2answers
347 views
What is wrong with this Custom Compare function
I was trying to debug a problem and ran into this issue. Maybe somebody can explain it to me. This is the code in question
public int Compare(CustomClass rt1, CustomClass rt2)
{
if (rt1 == ...
2
votes
1answer
1k views
List.Sort IComparer performance
I'm trying to sort a pair of int arrays (int[] a; int[] b;)
If I use Array.Sort(a,b) then the performance is great.
However, I'd prefer to use a List<> and load the int pairs in a struct.
I can ...
2
votes
2answers
232 views
When will a Comparer make Sort throw an ArgumentException?
The documentation for Sort says that Sort will throw an ArgumentException if "The implementation of comparer caused an error during the sort. For example, comparer might not return 0 when comparing an ...
1
vote
2answers
50 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 ...
1
vote
2answers
80 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 ...
1
vote
2answers
85 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
44 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 ...
1
vote
7answers
83 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 ...
1
vote
2answers
206 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
vote
1answer
241 views
How to sort WPF GridView alphabetically with empty strings at end?
I have a ListView (GridView) with multiple columns and so far I can sort it by column alphabetically, but when I'm sorting A-Z, empty strings show up at the top. I want to move these to the end. I ...
1
vote
2answers
202 views
IComparer did not return zero when Array.Sort called x.CompareTo(x)
I've implemented an IComparer to sort results on a search page. Sometimes, in production, users are getting this error. All the data for the search (criteria, paging, sorting) is on the querystring, ...
1
vote
5answers
249 views
ArrayList Sorting
I have an ArrayList that contains a large number of strings. It needs to be sorted in place based on three fields (essentially three substrings) which are Name, Age and Amt. Age is the first substring ...
1
vote
1answer
269 views
C# List<T> Sort with IComparer argument gives compilation error
Can someone explain to me how this is supposed to work? I followed an MSDN example I found at http://msdn.microsoft.com/en-us/library/234b841s.aspx .
I have made my own CustomObject and have made a ...
1
vote
9answers
243 views
How to cast 'object' to Class type on IComparer.Compare method
I'm implementing an
int IComparer.Compare(object x, object y);
from the IComparer interface. I know the objects are of type Class1, and I know one of its members is class1Instance.myDate, of type ...
1
vote
2answers
1k views
How to use custom IComparer for SortedDictionary?
I am having difficulties to use my custom IComparer for my SortedDictionary<>. The goal is to put email addresses in a specific format (firstnam.lastname@domain.com) as the key, and sort by last ...
1
vote
3answers
798 views
Reverse-sorting a Listview (with Comparer class)
I have a two-column ListView linked to a Datapager. The ListView lists all files of a particular type in a particular directory, so the data source is an ArrayList of type FileInfo. Consequently, I ...
1
vote
5answers
496 views
“Cannot convert to IComparer”
I have the following IComparer defined for boxed RegistryItem objects:
public class BoxedRegistryItemComparer : IComparer<object>
{
public int Compare(object left, object right)
{
...
1
vote
2answers
4k views
Problem with custom IComparer for List (sort) - c#
can anyone help, i have problem doing a sort, I thought i had it sorted but appears not to be working.
I have a List which stores the following values
8,6,10,11,7
I also have another List ...
1
vote
4answers
4k views
SortedList not sorting on key - VB.NET
I have a the need for key value pair that I wish to sort so I decided to use a SortedList instead of a HashTable.
I am adding the data in the order below to my SortedList which is the order I need it ...
0
votes
1answer
37 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 ...
0
votes
3answers
81 views
Sort ArrayList including custom struct
I wrote a struct
public struct SeasonEpisodeNr
{
public int seasonNr;
public int episodeNr;
}
During my program I will add those structs to an ...
0
votes
1answer
64 views
How to represent different types of documents in a logical order
I need to represent different types of documents in a logical order.
So I have a list of objects with IDs. I need to make a comparer which orders these objects by a "manual" rule. Order by id must be ...
0
votes
1answer
227 views
SortedSet add confusion
When I run the code below only 8 of the 50 files in the directory get added.
The files are named like 0001, 0002, 0003, 0004, etc.
The files that get added are in this order: 7,0,1,2,3,4,5,6 ...
0
votes
2answers
106 views
Order list<T> on a numerical base
i am using this code to order a list descending on numerical base
ItemsList.OrderByDescending(x => x.Views, new IntComparer());
public class IntComparer : IComparer<long>
{
...
0
votes
1answer
125 views
IEqualityComparer and singleton
I was wondering if there is possibility to use singleton as comparerObject in for example Distinct ??
Let's say that I have a list of element and I need to use distinct function on that list. ...
0
votes
1answer
280 views
How to use Distinct() in LINQ and how to pass own comparer
I am querying a table called STUDENT.I want to retrieve 2 values, the STUDENT_ID, and the TIME (Both are strings). However, I only want the distinct values of STUDENT_ID. When I use Distinct() with ...
0
votes
1answer
165 views
using Icomparer to sort with special condition
In my project i have a need to sort the datagrid column but if a certain condition holds true for an item it should be at the top(first item) of the sorted list. otherwise if that condition does not ...
0
votes
3answers
359 views
How to compare multiple object values against each other?
Assume i have a object with the following values in it (also please note i do not wish to use a datetime object for this, just the following values below and i wish to solve this in the comparer ...
0
votes
1answer
210 views
Error on an Icomparer Implementation. Please help !
I created an array sorter to sort arrays like in Win Explorer in a DNN module. As in the answer to a preview question:
Sorting an array of folder names like Windows Explorer (Numerically and ...
0
votes
1answer
93 views
What there is two Interface(Icomparable,Icomparer) for comparison? [closed]
Possible Duplicate:
When to use IComparable<T> Vs. IComparer<T>
while IComparer works for both the cases.
0
votes
1answer
126 views
IEqualityComparer for class with many properties
which is the best implementation for IEqualityComparer for this class ??
The entity has 7 properties.
Thanks in advanced.
[Serializable()]
public class ServidorSeleccionadoDto
{
...