Replace all overrides to GetHashCode() with an actual implementation instead of calling the base method.
#100
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I've kind of put off making a proper hash function and instead I'd just call
base.GetHashCode()in every override. In the future I'll probably just XOR a bunch of hashes from the variables inside each type (if I'm certain no patterns arise from that).