Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
2answers
210 views

Object.Equals is virtual, but Object.operator== does not use it in C#?

I got hit by a strange "asymmetry" in C# that I do not really understand. See the following code: using System; using System.Diagnostics; namespace EqualsExperiment { class Program { ...
5
votes
1answer
174 views

Is the 'Is' VB.NET keyword the same as Object.ReferenceEquals?

Is the Is VB.NET keyword the same as Object.ReferenceEquals?
1
vote
3answers
156 views

What is the difference between a==b and a.Equals(b) in the context of value and reference types?

I've come across this question quite a few times, and while the answers make sense, i wanted to check it out myself with a simple console app. class Program { static void Main(string[] args) ...
1
vote
3answers
77 views

In `equals(T value)`, must T be Object, or can it be like City, etc?

I'm trying to understand the equals() method better. All examples I've seen do something like: public class City { public boolean equals(Object other) { if (other instanceof City ...
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. ...