最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

ASP.NET中Dictionary基本用法實(shí)例分析

 更新時(shí)間:2016年08月04日 10:09:28   作者:Quber  
這篇文章主要介紹了ASP.NET中Dictionary基本用法,結(jié)合實(shí)例形式分析了Dictionary的基本功能、使用步驟與相關(guān)操作技巧,需要的朋友可以參考下

本文實(shí)例講述了ASP.NET中Dictionary基本用法。分享給大家供大家參考,具體如下:

//Dictionary位于System.Collections.Generic命名空間之下
/*
 * 使用Dictionary之前必須引用System.Collections.Generic命名空間;
 * 使用Dictionary時(shí)必須聲明其鍵和值的數(shù)據(jù)類型(可以為任意類型);
 */
//聲明實(shí)例化Dictionary為dic
System.Collections.Generic.Dictionary<int, string> dic = new System.Collections.Generic.Dictionary<int, string>();
//為dic添加鍵和值
dic.Add(100, "quber100");
dic.Add(200, "quber200");
//檢查是否存在300這個(gè)鍵
if (!dic.ContainsKey(300))
{
  //新增加300(鍵)和對(duì)應(yīng)的quber300(值)
  dic.Add(300, "quber300");
}
//移除dic鍵為300的項(xiàng)
dic.Remove(300);
//獲取dic鍵值對(duì)總數(shù)
int dicCount = dic.Count;
Response.Write("循環(huán)獲取dic中的鍵和值:<br/>");
//循環(huán)獲取dic中的鍵和值
foreach (KeyValuePair<int, string> keyDic in dic)
{
  Response.Write("key:" + keyDic.Key + ",value:" + keyDic.Value + "<br/>");
}
Response.Write("<hr/><br/>");
Response.Write("循環(huán)獲取dic中的鍵:<br/>");
//循環(huán)獲取dic中的鍵
Dictionary<int, string>.KeyCollection keyDics = dic.Keys;
foreach (int iKey in keyDics)
{
  Response.Write("key:" + iKey + "<br/>");
}
Response.Write("<hr/><br/>");
Response.Write("另一種方法循環(huán)獲取dic中的鍵:<br/>");
//循環(huán)獲取dic中的鍵
foreach (int iKey in dic.Keys)
{
  Response.Write("key:" + iKey + "<br/>");
}
Response.Write("<hr/><br/>");
Response.Write("循環(huán)獲取dic中的值:<br/>");
//循環(huán)獲取dic中的值
Dictionary<int, string>.ValueCollection valueDics = dic.Values;
foreach (string strValue in valueDics)
{
  Response.Write("value:" + strValue + "<br/>");
}
Response.Write("<hr/><br/>");
Response.Write("另一種方法循環(huán)獲取dic中的值:<br/>");
//循環(huán)獲取dic中的值
foreach (string strValue in dic.Values)
{
  Response.Write("value:" + strValue + "<br/>");
}
Response.Write("<hr/><br/>");
Response.Write("獲取dic中單個(gè)鍵和值:<br/>");
Response.Write("key:100,value:" + dic[100] + "<br/>");
Response.Write("<hr/><br/>");
Response.Write("檢查dic中是否存在鍵(100),并返回其值dicStr:<br/>");
//檢查dic中是否存在鍵(100),并返回其值dicStr
string dicStr = string.Empty;
if (dic.TryGetValue(100, out dicStr))
{
  Response.Write("OK");
}
else
{
  Response.Write("NO");
}
Response.Write("<hr/><br/>");

更多關(guān)于asp.net相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《asp.net操作json技巧總結(jié)》、《asp.net字符串操作技巧匯總》、《asp.net操作XML技巧總結(jié)》、《asp.net文件操作技巧匯總》、《asp.net ajax技巧總結(jié)專題》及《asp.net緩存操作技巧總結(jié)》。

希望本文所述對(duì)大家asp.net程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

尚志市| 惠东县| 铜梁县| 枝江市| 光泽县| 高雄市| 卓资县| 武平县| 达拉特旗| 鸡东县| 萨嘎县| 多伦县| 且末县| 宁河县| 平顺县| 玉门市| 曲麻莱县| 虎林市| 江达县| 礼泉县| 兰州市| 玉龙| 南宫市| 富川| 浦城县| 商洛市| 瓮安县| 淮阳县| 明光市| 托克托县| 安多县| 洪江市| 靖江市| 依安县| 巴南区| 合作市| 周口市| 茂名市| 白城市| 民勤县| 柳州市|