域名转IP
static void Main(string[] args)
{
    System.Net.IPHostEntry iPHostEntry = System.Net.Dns.GetHostEntry("www.chicai.group");
    System.Net.IPAddress[] address = iPHostEntry.AddressList;
    Console.WriteLine(address[0].ToString());

    Console.WriteLine(System.Net.Dns.GetHostAddresses("www.chicai.group")[0]);

    Console.ReadKey();
}

首页 我的博客
粤ICP备17103704号