Hashtable 哈希表
You can use a Hashtable to store key+value pairs.
你可以使用一个哈希表来存储“键+值”对。
更多新信息参见: http://msdn.microsoft.com/en-us/library/system.collections.hashtable.aspx
For C# users: the generic alternative to Hashtable is called Dictionary.
对于C#用户:一般替代Hashtable是Dictionary。
Variables变量
-
Tells how many elements does the hash table has.
告诉哈希表里有多少元素。
Functions函数
-
Count is set to zero, and references to other objects from elements of the collection are also released.
数量被设置为0,并且从该集合中元素到其他对象的引用也将被释放。 -
Removes the element with the specified key from the Hashtable.
从哈希表中移除指定键的元素。 -
Determines whether the Hashtable contains a specific value.
确定哈希表中是否包含一个指定的值。 -
Determines whether the Hashtable contains a specific key.
确定哈希表中是否包含一个指定的键。 -
Determines whether the Hashtable contains a specific key.
确定哈希表中是否包含一个指定的键。 -
Adds an element with the specified key and value into the Hashtable.
添加一个带有指定键和值元素到哈希表。
最后修改:2011年3月10日 Thursday 16:55