首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 其他相关 >

Hashtable 的施用

2012-07-24 
Hashtable 的使用2011-3-31Hashtable 的使用:???????? Hashtable ht new Hashtable()? ??????? ht.Add(

Hashtable 的使用

2011-3-31

Hashtable 的使用:

?

??????? Hashtable ht = new Hashtable();?
??????? ht.Add("cyj", "100");??????????? //--添加值
??????? ht.Add("music", "60");

?

??????? Response.Write("cyj:"+ht["cyj"].ToString());?? //--读取值
??????? Response.Write("music:" + ht["music"].ToString());

热点排行