4
votes
2answers
79 views
Should IEquatable<T>, IComparable<T> be implemented on non-sealed classes?
Anyone have any opinions on whether or not IEquatable or IComparable should generally require that T is sealed (if it's a class)?
This question occurred to me since I'm writing a set of base classes …
4
votes
4answers
283 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 …
4
votes
2answers
427 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 { …
3
votes
4answers
267 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",
…
3
votes
8answers
278 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)
{
…
3
votes
3answers
177 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 …
3
votes
5answers
353 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 …
2
votes
8answers
180 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 …
2
votes
2answers
232 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 …
1
vote
3answers
213 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
128 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 …
1
vote
2answers
868 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 …
0
votes
1answer
43 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 …
0
votes
1answer
34 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
2answers
133 views
IEnumerable.Except() and a custom comparer
Hello, I'm having troubles with the Except() method.
Instead returning the difference, it returns the original set.
I've tried by implementing the IEquatable and IEqualityComparer in the Account.
…
