string url = "www.google.com";
public bool UrlIsValid(string url)
{
bool br = false;
try
{
IPHostEntry ipHost = Dns.GetHostEntry(url);
br = true;
}
catch (SocketException)
{
br = false;
}
return br;
}
上面的程序将输出 true 但是当我将字符串更改为
string url = "https://www.google.com";
我的输出为false
.
如何获得第二种情况的输出?