up vote 10 down vote favorite
share [g+] share [fb]

How do you resolve a domain name to an IP address with .NET/C#?

link|improve this question
feedback

2 Answers

up vote 7 down vote accepted
using System.Net;

foreach (IPAddress address in Dns.GetHostAddresses("www.google.com"))
{
Console.WriteLine(address.ToString());
}
link|improve this answer
feedback

Try using the System.Net.Dns class

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.