[转载]C#中字典集合的两种遍历

复制代码
Dictionary<string, string> dictionary = new Dictionary<string,string>();



foreach (string dic in dictionary.Keys)
{
    //Key: dic
    //Value: dictionary[dic]
}
foreach (KeyValuePair<string, string> dic in dictionary
{
    //Key: dic.Key
    //Value: dic.Value 
}
复制代码

http://blog.csdn.net/mhtshhp/article/details/5208665

posted on   iackjee  阅读(774)  评论(0编辑  收藏  举报

导航

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示