asp.net Hashtable 遍歷寫法
來源:懂視網
責編:小采
時間:2020-11-27 22:44:34
asp.net Hashtable 遍歷寫法
asp.net Hashtable 遍歷寫法: 代碼如下:foreach (DictionaryEntry de in h)//h為Hashtable { Response.Write(de.Key + <br />); }
導讀asp.net Hashtable 遍歷寫法: 代碼如下:foreach (DictionaryEntry de in h)//h為Hashtable { Response.Write(de.Key + <br />); }

代碼如下:
foreach (DictionaryEntry de in h)//h為Hashtable
{
Response.Write(de.Key + "<br />");
}
聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
asp.net Hashtable 遍歷寫法
asp.net Hashtable 遍歷寫法: 代碼如下:foreach (DictionaryEntry de in h)//h為Hashtable { Response.Write(de.Key + <br />); }