ASP.NET Dictionary 的基本用法示例介绍

 更新时间:2014年01月09日 16:15:04   作者:  
ASP.NET中的Dictionary想必使用.net的朋友并不陌生吧,下面以示例的方式为大家介绍下其基本用法,感兴趣的朋友可以参考下

复制代码 代码如下:

Dictionary<string, string> o_Dic = new Dictionary<string, string>();
//添加元素
o_Dic.Add("01", "aaa");
o_Dic.Add("02","bbb");
//判断某个key是否存在
if (!o_Dic.ContainsKey("03"))
{
o_Dic.Add("03", "ccc");
}
//移除某个
o_Dic.Remove("03");
//取某个的值
string a = o_Dic["02"];
//遍歷
foreach (KeyValuePair<string, string> kvp in o_Dic)
{
Response.Write(kvp.Key + "," + kvp.Value);
}
//遍歷key
foreach (string s in o_Dic.Keys) { }
//遍歷value
foreach (string s in o_Dic.Values) { }

相关文章

最新评论