string
[] elements =
new
[50];
if
(Array.IndexOf<
>(elements,
"a"
) != -1 )
{
//存在
//返回的值就是 "a" 在数组中的下标
}
else