删除字符串组中相同元素,并删除值为空的元素 (转载,笔记)

 

//删除字符串组中相同元素,并删除值为空的元素 
public static string[] GetUnique(string[] strArr) 

System.Collections.Specialized.NameValueCollection name 
= new System.Collections.Specialized.NameValueCollection(); 
foreach (string s in strArr) 

if (s != ""

name[s] 
= s; 
}
 
}
 
return name.AllKeys; 
}
 
posted @ 2007-07-31 20:56  心飞翔  阅读(419)  评论(0编辑  收藏  举报