Digging into the .NET Dictionary implementation...

added by DotNetKicks
12/10/2021 4:20:58 PM

454 Views

I had dug into the implementation of the .NET dictionary because of this issue. More specifically, I wanted to know what kind of collision handling system is in use there. The two common ones are open addressing and chaining. The code for the Dictionary is available, but I don't think that I read much about how it works.


0 comments