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

2025-05-18 22:35:29
推荐回答(1个)
回答1:

if(数组.Contains("我是字符串"))
{
true;
}