1循環(huán)去判斷,一定是沒有問題的。
2從.NET Framework的Library中可以看到,Array有實(shí)作IList接口,所以Insus.NET想使用IList.Contains()方法來判斷。需要使用命名空間: using System.Collections;。
string a = "A";
string[] F = { "A", "B", "C" };
//實(shí)現(xiàn)
bool exist s= ((IList)F).Contains(a);
更多信息請(qǐng)查看IT技術(shù)專欄