码迷,mamicode.com
首页 > 其他好文 > 详细

Dictionary通过下标获取key和value

时间:2019-10-29 13:37:39      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:bsp   string   int   enum   下标   ict   nbsp   tor   col   

 Dictionary<int, string> dic = new Dictionary<int, string>();
            Dictionary<int, string>.Enumerator en = dic.GetEnumerator();
            for (int i = 0; i < dic.Count; i++)
            {
                if (en.MoveNext())
                {
                    int key = en.Current.Key;
                    string value = en.Current.Value;
                }
            }

 

Dictionary通过下标获取key和value

标签:bsp   string   int   enum   下标   ict   nbsp   tor   col   

原文地址:https://www.cnblogs.com/yinmu/p/11757861.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!