c# .net basics computer science
GetHashCode plays an important part in the implementation of a hash map. We should be familiar with it when using a custom type as a Dictionary key.
c# .net basics computer science
A look under the hood of Dictionary<TKey, TValue>, an overview of how the hash map data structure has been implemented in the .NET Framework.
c# .net basics computer science
An introduction to how a hash table works, which is the foundation of the key-value stores implemented in many environments.