摘要:HashTable
using System.Collections;
HashTable oTest = new HashTable();
oTest.Add("chris", 0);
oTest.Add("allen", 1);
oTest.Add("hunk", 2 );
foreach( DictionaryEntry AAA in oTest )
{
string a = AAA.key.ToString(); //AAA.KEY 是取上面的名字
string b = AAA.value.ToString(); //AAA.value 是取右邊的值
}
PS:要注意的地方有
(1) DictionaryEntry 取得或設定索引鍵/值組配對中的索引鍵。
(1) DictionaryEntry 取得或設定索引鍵/值組配對中的索引鍵。
(2) HashTable 並不會照順序執行 因此逤去把a b 印出來 會跟ADD順序也不相同