在 C# 中,如果语句我正在捕获长度属性并希望为此应用条件语句。但我相信我的条件陈述不起作用。我应该如何为给定的代码应用条件语句。长度“66”表示互联网连接已关闭,否则它会打开。
WebClient client = new WebClient();
string value;
try
{
value = client.DownloadString("http://google.com");
}
catch(WebException ex)
{
value = (ex. Message);
}
if (value = "66")
{
Console.WriteLine("Internet connection is down");
}
else
{
Console.WriteLine("Internet connection is up");
}
Console.WriteLine(value.Length);
Console.WriteLine("Press any key to continue");
Console.ReadKey(true);