互联互通

导航

2017年2月20日 #

C#去除string重复项目

摘要: //去除数组重复项目 public static String[] RemoveDup(String[] myData) { return myData.Distinct().ToArray(); } 返回的string[]的数组。 阅读全文

posted @ 2017-02-20 11:01 互联互通 阅读(155) 评论(0) 推荐(0) 编辑