Tagged Questions
IEqualityComparer is a .NET framework interface that allows the implementation of customized equality comparison for collections. That is, you can create your own definition of equality, and specify that this definition be used with a collection type that accepts the IEqualityComparer interface. Supported in .NET versions 3.5, 3.0, 2.0 (Source: MSDN)
13
votes
3answers
418 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 ...
13
votes
4answers
4k views
Distinct not working with LINQ to Objects
class Program
{
static void Main(string[] args)
{
List<Book> books = new List<Book>
{
new Book
{
Name="C# in depth",
...
13
votes
8answers
4k views
C# 3.0: Need to return duplicates from a List<>
I have a List<> of objects in C# and I need a way to return those objects that are considered duplicates within the list. I do not need the Distinct resultset, I need a list of those items that I ...
10
votes
1answer
1k views
IEqualityComparer<T> that uses ReferenceEquals
Is there a default IEqualityComparer implementation that uses ReferenceEquals?
EqualityComparer<T>.Default uses ObjectComparer, which uses object.Equals(). In my case, the objects already ...
7
votes
3answers
1k views
What's the role of GetHashCode in the IEqualityComparer<T> in .NET?
I'm trying to understand the role of the GetHashCode method of the interface IEqualityComparer.
The following example is taken from MSDN:
using System;
using System.Collections.Generic;
class ...
7
votes
4answers
2k views
IEqualityComparer for anonymous type
I have this
var n = ItemList.Select(s => new { s.Vchr, s.Id, s.Ctr, s.Vendor, s.Description, s.Invoice }).ToList();
n.AddRange(OtherList.Select(s => new { s.Vchr, s.Id, s.Ctr, s.Vendor, ...
6
votes
3answers
2k views
linq Except and custom IEqualityComparer
I'm trying to implement a custom comparer on two lists of strings and use the .Except() linq method to get those that aren't one one of the lists. The reason I'm doing a custom comparer is because I ...
5
votes
3answers
86 views
Questions about IEqualityComparer<T> / List<T>.Distinct()
Here is the equality comparer I just wrote because I wanted a distinct set of items from a list containing entities.
class InvoiceComparer : IEqualityComparer<Invoice>
{
public ...
4
votes
4answers
386 views
Best way to compare two Dictionary<T> for equality
Is this the best way to create a comparer for the equality of two dictionaries? This needs to be exact. Note that Entity.Columns is a dictionary of KeyValuePair(string, object) :
public class ...
4
votes
1answer
121 views
When to use IEqualityComparer in an app targeting .NET 4.0
Is there any benefit for me to implement the weakly typed IEqualityComparer in .NET 4.0 apps in addition to the IEqualityComparer<T> interface?
Another angle is I can always implement ...
4
votes
1answer
2k views
Remove duplicates from DataTable and custom IEqualityComparer<DataRow>
How have I to implement IEqualityComparer<DataRow> to remove duplicates rows from a DataTable with next structure:
ID primary key, col_1, col_2, col_3, col_4
The default comparer doesn't work ...
4
votes
4answers
2k views
C# - List<T>.Remove() always deletes the first object on the list
Working in Visual Studio 2008 (C#)...
I use a List collection to store instances of my custom class (Shift).
I want to delete a certain shift from the list by using the Remove method.
But ...
3
votes
1answer
54 views
How to get raw hash code from a class that re-implements GetHashCode?
Short question: How do I get the object.GetHashCode() value for an object that has re-implemented GetHashCode()?
Long story:
So I have about a hundred thousand objects, each sharing many (non-compile ...
3
votes
3answers
196 views
Linq Except with custom IEqualityComparer
I am trying to find the difference between two generic lists, as in the example below.
Even though t1 and t2 contain the same properties, they are not the same object, so I have need to implement an ...
3
votes
1answer
305 views
EqualityComparer<T>.Default isn't clever enough
I was reading the source code of EqualityComparer<T>.Default and found that it's not so clever. Here is an example:
enum MyEnum : int { A, B }
...
3
votes
1answer
182 views
Custom object using Except failing to use IEqualityComparer<T>
here is the object code:
public class DlpItem : IEqualityComparer<DlpItem>
{
public string Text { get; set; }
public int Id { get; set; }
public DlpItem(int pId)
{
...
3
votes
4answers
618 views
List.Contains is not working as hoped
If I have an object of type MyBull and a List<MyBull> orig:
// Just an example
MyBull x = getMeTheObjectWithIdFromDB(9);
orig.add(x);
// Again same? data object
MyBull y = ...
3
votes
1answer
2k views
Checking for equality in Objective-C
How do i check the key in dictionary is same as the string in method parameter?
i.e in below code , dictobj is NSMutableDictionary's object , and for each key in dictobj i need to compare with string. ...
3
votes
3answers
214 views
Hashtables (Dictionary etc) with integer keys
I've been puzzling over this for a few days... feel free to shoot down any of my assumptions.
We're using a Dictionary with integer keys. I assume that the value of the key in this case is used ...
2
votes
2answers
46 views
EqualityComparer<Uri>.Default.Equals() returning wrong result or what?
Is there an explanation for this other than being a bug in the .NET Framework? The EqualityComparer<Uri>.Default.Equals() method is saying that the following URLs are equal!
...
2
votes
2answers
91 views
IEqualityComparer with Linq to XML and Distinct() is not executed in code?
It doesnt matter what I write in the Equals method. The GetHashCode is always fired, but I do not know whose GetHashCode to return?
When the GetHashCode method is called then variable x has the ...
2
votes
2answers
167 views
How to use the IEqualityComparer
I have some bells in my database with the same number I want to get all of them without duplication then I create a compare class to do this work but the execution of the function make a lot delay ...
2
votes
4answers
131 views
Compare two lists that contain a lot of objects (2th part)
Referring to the question that I previously asked:
Compare two lists that contain a lot of objects
It is impressive to see how fast that comparison is maide by implementing the IEqualityComparer ...
2
votes
5answers
374 views
EqualityComparer<T>.Default vs. T.Equals
Suppose I've got a generic MyClass<T> that needs to compare two objects of type <T>. Usually I'd do something like ...
void DoSomething(T o1, T o2)
{
if(o1.Equals(o2))
{
...
}
}
...
2
votes
5answers
277 views
Why IEqualityComparer<T> has GetHashCode() method?
IEqualityComparer in the namespace System.Collections.Generic has following methods:
bool Equals(T x, T y);
int GetHashCode(T obj);
Since this inteface is used to check equality of objects, the ...
2
votes
3answers
283 views
IEqualityComparer string value within object
I quite possibly am doing this the wrong way but;
I have a list of objects in LINQ;
MyObj
string name
string somethingElse
List<MyObj> myObjects;
Now I'm trying to see if any object in ...
2
votes
2answers
157 views
Linq Distinct with a single comparison class (and interface)
I have several classes in my application, all of which have a Name property that I want to use as my basis for comparison (Distinct(), etc.). Since I am always going to be comparing on Name, I ...
2
votes
2answers
219 views
Comparison Operator using Reflection
I want to compare two values at runtime using reflection. I was using Comparer.Default.Compare(x,y) for this, but I have come to realize that this is not adequate. Let's say I want to compare a double ...
2
votes
1answer
120 views
Removing duplicate byte[]s from a collection
This will probably be an extremely simple question. I'm simply trying to remove duplicate byte[]s from a collection.
Since the default behaviour is to compare references, I tought that creating an ...
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
3answers
223 views
Comparing two List<MyClass> in C#
I have a class called
MyClass
This class inherits IEquatable and implements equals the way I need it to. (Meaning: when I compare two MyClass tyupe objects individually in code, it works)
I then ...
2
votes
2answers
3k views
HashSet constructor with custom IEqualityCompare defined by lambda?
Currently the HashSet<T> constructor that allows you to define your equality comparison yourself is the HashSet<T>(IEqualityComparer<T> comparer) constructor.
I would like to define ...
2
votes
2answers
3k views
IEqualityComparer.Equals when used with IEnumerable.Contains is x or y the value in the list?
IEnumberable has an extension method Contains<T> which takes two parameters. The first parameter is the value to check for and the second is an implementation of IEqualityComparer.
Looking at ...
1
vote
3answers
46 views
What is the AccessTime for Dictionary<Dictionary<char,int>,List<string>> , is it still O(1)?
I wanted to implement an algorithm with Dictionary<Dictionary<char,int>, List<string>> to find the anagram words in a dictionary.
As i need to implement my custom EqualityComparer ...
1
vote
3answers
83 views
How to implement IEqualityComparer to return distinct values?
I have a L2E query that returns some data that contains duplicate objects. I need to remove those duplicate objects. Basically I should assume that if their IDs are the same then the objects are ...
1
vote
2answers
55 views
Create an iqueryable list that's distinct
I have a list of objects, GroupStudentStatus, that I need to make distinct.
I wrote the class below to do this.
The 2 attributes that are relevant are GroupStudentStatus.IsLastActionRemoved (DateTime) ...
1
vote
2answers
40 views
Why is there no Overload of Distinct() accepting a Comparison Delegate (or similar)
When using the query operator Distinct() the types in the queried sequence must either provide suitable overloads of GetHashCode() and Equals() or you have to pass an implementation of ...
1
vote
1answer
72 views
How do you get WCF serialization to preserve a non-default Comparer on a generic Dictionary?
Suppose we start from scratch in Visual Studio 2010 and add a 'WCF Service Aplication'. We add this method and implementation:
// (in IService1.cs)
[OperationContract]
Dictionary<string, ...
1
vote
1answer
63 views
Implementing IEqualityComparer modifies equality test results?
I implemented a IEqualityComparer<MyObject> for MyObject in order for my priority queue to be able to sort elements (the use does not really import here, but whatever).
Thus, I implemented the ...
1
vote
1answer
109 views
Removing Items from a list of objects when an object property is duplicated
I am reasonably new to linq and c# so apologies if I am being dumb. I have a query which brings back a list of product info, prices of these products and categories these products are in based on some ...
1
vote
2answers
272 views
Using IEqualityComparer for Union
I simply want to remove duplicates from two lists and combine them into one list. I also need to be able to define what a duplicate is. I define a duplicate by the ColumnIndex property, if they are ...
1
vote
2answers
145 views
Enumerable.SequenceEqual<TSource> and EqualityComparer<T>
From MSDN
The
SequenceEqual(IEnumerable,
IEnumerable) method
enumerates the two source sequences in
parallel and compares corresponding
elements by using the default equality
comparer ...
1
vote
1answer
282 views
Intersect with 2 EntityCollections via custom IEqualityComparer
Not to repeat this question too much, but I already did a search and came up empty on a result. So I have two EntityCollections of type T and I would like to find the common items in each. The ...
1
vote
3answers
216 views
Object Comparison in .net
Is it any different from the CLR standpoint to implement IEqualityComparer vs overriding the == operator for the property you would use in the IEqualityComparer<T>? And if so, when would you use ...
1
vote
3answers
414 views
Join + IEqualityComparer<T> and HashCode
Im writing my own LINQ reference but Im getting troubles with some of the more complicated operators implementations.
There is a Join implementation that takes a IEqualityComparer Im getting just ...
1
vote
3answers
464 views
How to use Object.GetHashCode() on a type that overrides GetHashCode()
I have a class A that implements IEquatable<>, using its fields (say, A.b and A.c) for implementing/overriding Equals() and overriding GetHashCode(), and everything works fine, 99% of the time. ...
1
vote
4answers
2k views
Using an IEqualityComparer with a LINQ to Entities Except clause
I have an entity that I'd like to compare with a subset and determine to select all except the subset.
So, my query looks like this:
Products.Except(ProductsToRemove(), new ProductComparer())
The ...
1
vote
2answers
386 views
How to Implement IEqualityComparer<PointF> With Tolerance
This question is similar to the one here.
We all know what PointF is, don't we? This is the data structure:
public struct PointF
{
public float X;
public float Y;
}
How to implement ...
1
vote
2answers
337 views
Can this implementation of an IEqualityComparer be improved?
I don't see any problems with this code, but it feels like I'm missing something. Maybe it is possible to reduce the number of lines. Or is there even a bug to be fixed? I'm open to any suggestions.
...
1
vote
2answers
1k views
IEnumerable.Except() and a custom comparer
I'm having troubles with the Except() method.
Instead of returning the difference, it returns the original set.
I've tried implementing the IEquatable and IEqualityComparer in the Account class.
...