C#判断某个字符串是否在另一个字符串数组中
Posted 老王家的大牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#判断某个字符串是否在另一个字符串数组中相关的知识,希望对你有一定的参考价值。
注意: 用IList需要using System.Collections;
数组中不能直接indexOf这个方法,需要 Array.IndexOf(x,x);这样来使用
string t = "ttt";
return tt.Count(p=>p == t) > 0 //这个方法用来返回在指定得序列中满足条件的元素数量
OpenFileDialog dialog = new OpenFileDialog();
string[] mys = { ".bmp", ".jpg", ".png", ".gif", ".ico" };
if (dialog.ShowDialog() == DialogResult.OK)
{
string fileType=Path.GetExtension(dialog.FileName);
bool a= mys.Contains(fileType);
if (a)
{
Bitmap p1 = new Bitmap(dialog.FileName);
pictureBox1.Image = p1;
}
else
{
MessageBox.Show("暂不支持该图片格式!");
}
}
以上是关于C#判断某个字符串是否在另一个字符串数组中的主要内容,如果未能解决你的问题,请参考以下文章
使用json.net做uwp开发时,怎样判断一个json字符串中的某个数组成员是不是为空?(c#)
JQuery判断数组中是否包含某个元素$.inArray("元素字符串", 数组名称);