2
votes
5answers
116 views
C#: How would you unit test GetHashCode?
Testing the Equals method is pretty much straight forward (as far as I know). But how on earth do you test the GetHashCode method?
0
votes
1answer
40 views
Is there a built-in IEqualityComparer that compares objects only using their hash value?
Is there a built-in IEqualityComparer that compares objects by the value returned by their GetHashCode value? It's easy to write, but I'd prefer to use a provided class instead of a custom one.
…
0
votes
2answers
93 views
C# - How to override GetHashCode with Lists in object
Hi,
I am trying to create a "KeySet" to modify UIElement behaviour. The idea is to create a special function if, eg. the user clicks on an element while holding a. Or ctrl+a.
My approach so far, …
0
votes
1answer
38 views
ActiveRecord and GetHashCode fails if int is nullable.
There is a problem when the int is nullable on GetHashCode
At the point of GetHashCode on ActiveRecord.tt there is a need for a nullable check.
Something like this.
<#
…
0
votes
1answer
42 views
GetHashCode for a Class with a List Object
I have such a class:
public class Cycle
{
public List<int> Edges
{
get;
private set;
}
public override bool Equals(object obj)
…
2
votes
4answers
157 views
Can I trace object identity using GetHashCode?
What is the use of GetHashCode()? Can I trace object identity using GetHashCode()? If so, could you provide an example?
1
vote
7answers
132 views
IEqualityComparer for Value Objects
I have an immutable Value Object, IPathwayModule, whose value is defined by:
(int) Block;
(Entity) Module, identified by (string) ModuleId;
(enum) Status; and
(entity) Class, identified by …
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 …
0
votes
3answers
575 views
Creating the GetHashCode method in C#
What is the best way to create your own GetHashCode method for a class in C#? Suppose I have a simple class (which overrides the Equals method), as follows:
class Test
{
public string[] …
1
vote
5answers
464 views
Converting a Double to an Integer for GetHashCode in Delphi
Delphi 2009 added the GetHashCode function to TObject. GetHashCode returns an Integer which is used for hashing in TDictionary.
If you want an object to work well in TDictionary, you need to …
0
votes
3answers
111 views
.NET equivalent to java.util.Arrays.hashCode() function for arrays of intrinsic types?
Is there a.NET utility class equivalent to java.util.Arrays.hashCode() for arrays of intrinsic types such as int[], short[], float[], etc.?
Obviously I could write my own utility class but was trying …
0
votes
4answers
165 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; }
}
…
0
votes
4answers
263 views
Object.GetHashCode
My question may duplicate Default implementation for Object.GetHashCode() but I'm asking again because I didn't understand the accepted answer to that one.
To begin with I have three questions about …
0
votes
3answers
218 views
How to override equals for specific NHibernate class
I am struggling to figure out how I should override equals and get hashcode for a class I am writing using NHibernate.
Basic business scenario is that users cannot re-use the same password within a …
4
votes
5answers
744 views
Default implementation for Object.GetHashCode()
Does anyone know or have an idea on how the default implementation for GetHashCode() works? And does it handle structures, classes, arrays, etc efficiently and well enough?
Trying to decide under …
