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

for循环 Dictionary

时间:2018-01-10 13:52:13      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:sharp   count   pos   nta   cti   element   har   int   for   

Dictionary<string, string> dic = new Dictionary<string, string>();
            dic.Add("1", "1");

            for (int index = 0; index < dic.Count; index++)
            {
                var item = dic.ElementAt(index);
                var itemKey = item.Key;
                var itemValue = item.Value;
            }

  

for循环 Dictionary

标签:sharp   count   pos   nta   cti   element   har   int   for   

原文地址:https://www.cnblogs.com/XuPengLB/p/8257724.html

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