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

List集合去重复

时间:2014-07-11 19:00:05      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   div   

 1             ///获取List的集合值
 2                 foreach (DataRow row in dt.Rows)
 3                 {
 4                     list.Add(row["HJMC"].ToString());
 5                 }
 6                 //list去重复
 7                 for (int i = 0; i < list.Count - 1; i++)
 8                 {
 9                     for (int j = list.Count - 1; j > i; j--)
10                     {
11                         if (list[j].ToString().Equals(list[i].ToString()))
12                         {
13                             list.Remove(list[j].ToString());
14                         }
15                     }
16                 }

 

List集合去重复,布布扣,bubuko.com

List集合去重复

标签:style   blog   color   os   for   div   

原文地址:http://www.cnblogs.com/acoll/p/3833724.html

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