내가 작성한 작은 예:
Hashtable ht = new Hashtable();
ht.Add("ht1", "111");< / p>
ht.Add("ht2", "222");
ht.Add("ht3", "333");
//해시테이블 정의
문자열 키 = null;
foreach (System.Collections.DictionaryEntry de in ht)
{
if (de.값 .ToString() == "222")
{
key=de.Key.ToString();//키 가져오기
break;/ / 각 순회 종료
}
}
Response.Write(key);//Output ht2