Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
2answers
5k views

Understanding IEquatable

If i want to compare objects and they implement the IEquatable<> interface, i have a few questions: Why do i have to override Equals(object ) if i have to implements Equals<> can i use == and ...
16
votes
3answers
1k views

What's the difference between IEquatable and just overriding Object.Equals()?

I want my Food class to be able to test whenever it is equal to another class. I will later use it against a List, and I want to use its List.Contains() method. Should I implement IEquatable or just ...
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
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", ...
11
votes
3answers
756 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 ...
11
votes
5answers
2k views

Is there a complete IEquatable implementation reference?

Many of my questions here on SO concerns IEquatable implementation. I found it being extremely difficult to implement correctly, because there are many hidden bugs in the naïve implementation, and the ...
9
votes
4answers
247 views

Can I overload an == operator on an Interface?

I have an interface like this: public interface IFoo { int A {get;} int B {get;} } and I have multiple classes implementing IFoo. I want to check equality, not based on ReferenceEquality, but ...
5
votes
8answers
695 views

IEquatable Interface what to do when checking for null

I have implemented the IEquatable interface in a class with the following code. public bool Equals(ClauseBE other) { if (this._id == other._id) { ...
5
votes
2answers
1k views

Equals method implementation helpers (C#)

Everytime I write some data class, I usually spend so much time writing the IEquatable implementation. The last class I wrote was something like: public class Polygon { public Point[] Vertices { ...
5
votes
3answers
415 views

Should I use a concatenation of my string fields as a hash code?

I have an Address class in C# that looks like this: public class Address { public string StreetAddress { get; set; } public string RuralRoute { get; set; } public string City ...
4
votes
2answers
65 views

Difference between Object.Equals(objA, objB), objA.Equals(objB) and objA == objB for CLR types?

I am wondering if the CLR types would return different results from the following: Object.Equals(objA, objB) objA.Equals(objB) (objA == objB) I do realize that outside of the CLR someone could ...
4
votes
5answers
803 views

Value Equality with Bidirectional Association in C#

Background I have two objects which have bidirectional association between them in a C# project I am working on. I need to be able to check for value equality (vs reference equality) for a number of ...
3
votes
1answer
181 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
6answers
172 views

in IEquatable<T> implementation is reference check necessary

I have a class that imlements IEquatable<T>. Is it necessary to do a refrence check in Equals() or is it taken care of in the framework? class Foo : IEquatable<Foo> { int value; ...
3
votes
4answers
241 views

What's the difference between obj1.Equals(obj2) and static Object.Equals(obj1, obj2) in c#?

from the documentation by Microsoft, both Equals-methods are essentially the same. But I just stumbled across something very strange. in my Silverlight project I have two instances of the same class ...
3
votes
4answers
578 views

How do C# Linq extension methods perform equality comparison?

So, the following lambda expression is not returning any elements in the collection, even though while stepping through I was able to verify that 1 item matches the criteria. I've added a sample of ...
3
votes
9answers
272 views

How to treat nulls in equality comparisons?

When I have to implement equality comparers for public class SampleClass { public int Prop { get; set; } } Should I make null == new SampleClass() and new SampleClass() == null and new ...
3
votes
2answers
660 views

How should I go about implementing Object.GetHashCode() for complex equality?

Basically, I have the following so far: class Foo { public override bool Equals(object obj) { Foo d = obj as Foo ; if (d == null) return false; return ...
2
votes
2answers
156 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
4answers
407 views

C# dictionary uniqueness for sibling classes using IEquatable<T>

I would like to store insances of two classes in a dictionary structure and use IEquatable to determine uniqueness of these instances. Both of these classes share an (abstract) base class. Consider ...
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
748 views

C# XNA: Trouble with Dictionaries

I'm new to C#. Perhaps I'm not implementing IEquatable properly, because objects of my type that should be considered the same are not. The class: class CompPoint : IComparable { public int ...
2
votes
1answer
723 views

Key comparisons for Linq GroupBy using Default EqualityComparer

I'm trying to do a Linq GroupBy on some objects using an explicit key type. I'm not passing an IEqualityComparer to the GroupBy, so according to the docs: The default equality comparer Default is ...
1
vote
3answers
96 views

Find an item inside a List<T> by providing a sample object instance

Why is there a List<T>.Contains(T) method but no List<T>.Find(T) method? Only the Finds that support predicates are supported. If we have an existing instance of T populated with a ...
1
vote
3answers
156 views

When I compare an Object (type) does it uses the IEquatable of a specific class?

My method receives two parameters, both of Object type. They have the same type, that implements IEquatable. My question is: when I do: param1 == param2 does the framework compare using the ...
1
vote
1answer
5k views

Linq .Except function “At least one object must implement IComparable.”

Basically i have a container which implements IEquatable (sample shown below) public class ContainerClass : IEquatable<ContainerClass> { public IEnumerable<CustomClass> ...
1
vote
5answers
638 views

C# generic list of my class contains method not finding my instance

We have several classes in place for our CMS and I'm trying to get equality to work so I can check to see if a generic List contains an item. We have some layers of inheritance which I'll show you ...
1
vote
5answers
319 views

How do I get Distinct() to work with a collection of custom objects

I have followed the suggestions from this post to try and get Distinct() working in my code but I am still having issues. Here are the two objects I am working with: public class InvoiceItem : ...
1
vote
1answer
482 views

How to implement IEquatable<T> when mutable fields are part of the equality - Problem with GetHashCode

I am using Entity Framework in my application. I implemented with the partial class of an entity the IEquatable<T> interface: Partial Class Address : Implements IEquatable(Of Address) 'Other ...
1
vote
1answer
1k views

GetHashCode on null fields?

How do I deal with null fields in GetHashCode function? Module Module1 Sub Main() Dim c As New Contact Dim hash = c.GetHashCode End Sub Public Class Contact : Implements IEquatable(Of ...
1
vote
1answer
170 views

Cascading IEquatable(Of T)

I have several entities I need to make IEquatable(Of TEntity) respectively. I want them first to check equality between EntityId, then if both are zero, should check regarding to other properties, ...
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
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. ...
1
vote
3answers
645 views

For reference types how does using IEquatable<T> reduce the use of casting?

I've read in several articles that for reference types using IEquatable reduces the use of casting Can someone kindly provide a convincing example. Thanks Clarry
1
vote
1answer
314 views

Is it possible to automatically handle List.Contains by comparing a property on the item?

Can we do something similar to List.Contains(myItem) in order to check if a property on an item in the list equals a property on myItem. (We have considered Contains and Exists, something like: if ...
0
votes
4answers
322 views

What should GetHashCode return when object's identifier is null?

Which of the following is correct/better, considering that identity property could be null. public override int GetHashCode() { if (ID == null) { return base.GetHashCode(); } ...
0
votes
2answers
174 views

Dynamic equality checking of multiple properties of a type's objects

I have a type like: class Order { public List<IItem> AllItems { get; set; } public string Name { get; set; } public double TotalPurchases { get; set; } public long Amount { get; set; } ...
0
votes
4answers
281 views

collections.Contains(T) method

I am using a System.Collections.Generic, which contains instances of a class I wrote. I have read that the collections .Contains method uses object.Equals(), or an implementation of the Equals() ...
0
votes
1answer
318 views

How to structure classes to Implement IEquatable and ISerializable

Been banging my head on this for a while now The problem I have is trying to add the IEquatable behaviour so my derived classes can use set operations Intersect of ILink etc. At the moment I ...
0
votes
1answer
273 views

How would you go about making a List<> comparable?

I am using a Telerik GridView, and having an issue trying to sort a column that is made of of a List<>. In this forum entry, the Telerik team states that the grid can sort IComparable and ...
0
votes
1answer
186 views

VB.Net IEquatable, Access Denied

I just have a simple Interface definition in my project, which I haven't even used yet. But when I try to build the project I get this error: Access is denied: ...
0
votes
4answers
461 views

How to implement a GetHashCode compatible Equals method, when the space is greater than 32 bits?

In .NET you need that Equals(object) and GetHashCode() are compatible. But sometimes you can't: public class GreaterThan32Bits { public int X { get; set; } public int Y { get; set; } } ...