我的问题是包含方法 我正在使用Visual Studio 2008,因为该系统与Visual Studio的2008版本兼容。 我的错误是 无法在此处访问私有方法“包含” 感谢你们对我的帮助。 View Image for Error.
public void btnCheck_Click(object sender, EventArgs e)
{
string[] isafood =
{
"apple",
"pear",
"grape"
};
string check = "apple";
if(isafood.Contains(check))
{
MessageBox.Show("k");
//Do Something
}
else
{
MessageBox.Show("haist");
//Do Something
}
}