Dictionary VS Hashtable

เนื่องด้วยว่าได้รับมอบหมายให้พูดเรื่อง Dictionary ในที่ประชุมฝ่าย เลยขอ Draft ไว้ในนี้ด้วยเลยละกัน

วิธีการนำเสนอได้แรงบรรดาลใจจากที่ไปงาน IgniteBkk 2010 มา


Note – Hashtable == Dictionary?

A Dictionary is closely related to a HashTable. There are many subtle differences between them, but one important difference is that a Dictionary is generally faster than a Hashtable for storing data.

The reason is that a Dictionary takes strongly-typed values as its input, so you do not suffer the performance impact of storing generic Objects and boxing/unboxing them into the proper types during use.

by kirupa

Reference :

Scroll to top