Possible Duplicate:
What is the best algorithm for an overridden System.Object.GetHashCode?
As I understand it, there's a recommendation to override the base type GetHashCode()
for my own value types. I have a hard time finding good resources on the actual how to implement a good hash code scheme for different kinds of value types; there's mostly the advice ahm, ya need to make your own hashing there, ya see...
- What do I need to know about generating the hash key for a value type?
- Where can I find more and better info than MSDN provides?