C#无法访问私有方法“包含”

时间:2019-12-19 00:58:46

标签: c# winforms visual-studio-2008

我的问题是包含方法 我正在使用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
            }
        }

0 个答案:

没有答案