How to use System.HashCode.Combine with more than 8 values?
As stated in the System.HashCode documentation, adding together hashes returned by successive HashCode.Combine calls is NOT the solution. While the static HashCode.Combine method overloads only allow up to 8 values, these are just convenience methods – to combine more, instantiate the HashCode class itself and use it as follows: public override int GetHashCode() { HashCode … Read more