欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

判断数组中是否有重复的数据

程序员文章站 2022-07-06 19:37:58
public bool IsRepeat(string[] yourValue) { Hashtable ht = new Hashtable(); for (int i = 0; i < yourValue.Length - 1; i++) { if(ht.Contains(yourValue[i... ......

 

public bool IsRepeat(string[] yourValue)
{
    Hashtable ht = new Hashtable();
    for (int i = 0; i < yourValue.Length - 1; i++)
    {
        if(ht.Contains(yourValue[i]))
        {
            return true;
        }
        else
        {
        ht.Add(yourValue[i], yourValue[i]);
        }
    }
    return false;
}