http://xiangai.taobao.com
http://shop148612228.taobao.com

去除数组中的重复数据

//去除数组中的重复数据
protected string[] removeDuplicate(string[] ArrInput)
{
System.Collections.ArrayList nStr = new System.Collections.ArrayList();
for (int i = 0; i < ArrInput.Length; i++)
{
if (!nStr.Contains(ArrInput[i]))
{
nStr.Add(ArrInput[i]);
}
}
return (string[])nStr.ToArray(typeof(string));
}

 

posted @ 2011-11-10 23:29  万事俱备就差个程序员  阅读(244)  评论(0编辑  收藏  举报

http://xiangai.taobao.com
http://shop148612228.taobao.com
如果您觉得对您有帮助.领个红包吧.谢谢.
支付宝红包
微信打赏 支付宝打赏