C#中IPAddress与域名的使用

  一个字串,是"192.168.1.6",使用IPAddress.Parse()。

  如果是域名呢?

 

using System.Net;
IPHostEntry host = Dns.GetHostByName("blog.csdn.net");
IPAddress ip = host.AddressList[0];
textView.Text = ip.ToString();
IPHostEntry host = Dns.GetHostByName("blog.csdn.net");
IPAddress ip = host.AddressList[0];
textView.Text = ip.ToString();

 

你可能感兴趣的:(软件技巧,Visual,Studio/QT)