如何使用.NET / C#将域名解析为IP地址?

时间:2008-08-07 14:57:00

标签: c# .net dns reverse-dns

如何使用.NET / C#将域名解析为IP地址?

2 个答案:

答案 0 :(得分:18)

using System.Net;

foreach (IPAddress address in Dns.GetHostAddresses("www.google.com"))
{
   Console.WriteLine(address.ToString());
}

答案 1 :(得分:0)

尝试使用System.Net.Dns