DataTable去重复方法
摘要:
//去掉重复行DataTable table=new DataTable();DataView dv = table.DefaultView;table = dv.ToTable(true, new string[] { "name", "code" });此时table 就只有name、code无... 阅读全文
posted @ 2015-01-14 18:17 taian_xiaojia 阅读(271) 评论(0) 推荐(0)