C#去掉list集合中的重复数据
摘要:
List conList= new List(); List listII = new List(); int m = 0; for (int i = 0; i < conList.Count; i++) { string i_value = (string)conList[i]; for (int j = 0; j < conList.Count; j++) { ... 阅读全文
posted @ 2013-08-15 16:34 悟生慧 阅读(17522) 评论(1) 推荐(0) 编辑