检查c#中的公共静态Bool

本文关键字:静态 Bool 检查 | 更新日期: 2023-09-27 18:15:49

我对c#有点陌生,我得到了一个使用公共静态bool的代码。但是我怎么检查呢?我试过这样做

public static bool CheckForInternetConnection()
{
    try
    {
        using (var client = new WebClient())
        {
            using (var stream = client.OpenRead("http://www.google.com"))
            {
                return true;
            }
        }
    }
    catch
    {
        return false;
    }
}
private async void Form1_Load(object sender, EventArgs e)
{
    await Task.Delay(5000);
    if (CheckForInternetConnection() = true)
    {
    }
}

显示错误

检查c#中的公共静态Bool

我确认注释:这只是由于if(...)条件块中缺少第二个=字符而导致的语法错误。我已经在运行的控制台项目中测试了您的代码,并且使用第二=它工作得很好。