C# 判断数组中是否存在某个值
Posted lyj00436
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 判断数组中是否存在某个值相关的知识,希望对你有一定的参考价值。
方法1
1 int[] ia = {1,2,3}; 2 int id = Array.IndexOf(ia,1); // 这里的1就是你要查找的值
方法2
1 string[] strArr = {"a","b","c","d","e"}; 2 bool exists = ((IList)strArr).Contains("a");
参考网址
[1] https://www.cnblogs.com/superelement/p/7691229.html
以上是关于C# 判断数组中是否存在某个值的主要内容,如果未能解决你的问题,请参考以下文章