摘要: 需求:遍历List列表,当访问的元素符合某一条件时,将该元素移除出列表。 注意点:使用foreach循环遍历无法做到边读边修改,所以要使用for循环。 例子: // 倒序遍历。 for (int i = list.Count - 1; i >= 0 ; i--) { if (list[i].name 阅读全文
posted @ 2017-04-12 09:42 霍莉雪特 阅读(1027) 评论(0) 推荐(0) 编辑