C# 判断数组中是否存在某个值
方法1 1 int[] ia = {1,2,3}; 2 int id = Array.IndexOf(ia,1); // 这里的1就是你要查找的值 1 string[] strArr = {"a","b","c","d","e"}; 2 bool exists = ((IList)strArr).Contains("a"); 参考网址 [1] https://www.cnblogs.com/superelement/p/7691229.html 来源:博客园 作者: lyj00436 链接:https://www.cnblogs.com/luyj00436/p/11653343.html