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

【转】集合已修改;可能无法执行枚举操作

时间:2014-11-07 16:42:47      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   color   ar   sp   for   strong   on   

转自:http://bbs.csdn.net/topics/370152213

#2楼

foreach 值是只读的。

所以只能用 for

Dictionary<int, int> d = new Dictionary<int, int>();
    d.Add(1, 1);
    var target = d.ToList();
    for (int index = 0; index < target.Count; index++)
      XX.Write(target[index].Key + " = " + target[index].Value);

【转】集合已修改;可能无法执行枚举操作

标签:style   http   io   color   ar   sp   for   strong   on   

原文地址:http://www.cnblogs.com/wdw31210/p/4081270.html

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