私はこの方法を持っています:
public static void testConnection()
{
if (System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable())
{
System.Windows.MessageBox.Show("This computer is connected to the internet");
}
else
{
System.Windows.MessageBox.Show("This computer is not connected to the internet");
}
}
接続が利用可能かどうかを教えてくれると思いますが、接続がないと確信している場合でも、常に true を返します (そして最初のメッセージを出力します)。私が間違っていることは何ですか?
PS: 私はまだ C# を学んでいます。