C#中怎么判断一个数组中是否存在某个数组值

(1) 第一种方法:

int[] ia = {,,};
int id = Array.IndexOf(ia,); // 这里的1就是你要查找的值
if(id==-)
// 不存在
else
// 存在

(2) 第二种方法:

string[] strArr = {"a","b","c","d","e"};
bool exists = ((IList)strArr).Contains("a");
if(exists)
// 存在
else
// 不存在

注意: 用IList需要using System.Collections;

转载:C#中怎么判断一个数组中是否存在某个数组值

上一篇:【BZOJ3529】【SDOI2014】 数表


下一篇:struts2:使用JQuery、JSON和AJAX处理请求