C#根据域名获取服务器IP,见代码:

string ipAddr = "blog.uoolo.com";
string ip = "";
IPHostEntry host = Dns.GetHostEntry(ipAddr);
IPAddress ipGet = host.AddressList[0];
ip = ipGet.ToString();

C#获取网址的域名

Uri u = new Uri(Url);
u.Host


最后修改:2016 年 07 月 07 日
如果觉得我的文章对你有用,请随意赞赏