Mark Vincze

Software Developer

basics

Back to basics: Dictionary part 4, custom GetHashCode

c# .net basics computer science


Back to basics: Dictionary part 3, built-in GetHashCode

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.


Back to basics: Dictionary part 2, .NET implementation

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.


Back to basics: Dictionary part 1, hash tables

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.