MSDN says:
When an element is added to the Hashtable, the element is placed into a bucket based on the hash code of the key.
But I cannot find any information how are buckets organized or created. How are buckets ordered(alphabetically)? What basic principle to create a bucket in a hashtable?
I mean for example, a word "Tom" has a hashcode which is 3. Well, a word "TomTom" has another hashcode, for example, which is 6. My question is in which buckets will these words be putted and why?