SortedDictionary 遍历
作者:朱尚 / 日期:2015-01-27 / 分类:Asp.Net / 浏览:2488
SortedDictionary<string, string> sParaTemp = new SortedDictionary<string, string>();
sParaTemp.Add("partner", "好的");

foreach (KeyValuePair<string, string> kv in sParaTemp)
{
    Response.Write(kv.Key + "  :  " + kv.Value + "<br>");
}
上一篇:Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out
下一篇:C# .net 获得图片尺寸
本文标签: SortedDictionary 遍历
本文链接:http://www.banzhuan.net/detail/232