12三/090
Using Object for a Hashtable is not recommend.
Using Object for a "hash table" is a premature optimization. I realize there are performance benefits but one should demonstrate a substantial need before abandoning use of correct types for the job at hand. There are real advantages to using correct types (e.g. weak references are supported in Dictionary).
Remember, the grail of efficiency leads to abuse.