So I\'m trying to figure out how to correctly override GetHashCode()
in VB for a large number of custom objects. A bit of searching leads me to this wonderful
You can implement a suitable hash code helper in a separate assembly either using C# and the unchecked
keyword or turning overflow checking of for the entire project (possible in both VB.NET and C# projects). If you want to you can then use ilmerge
to merge this assembly to your main assembly.