vote up 3 vote down star

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

flag

2 Answers

vote up 6 vote down check
using System.Net;

foreach (IPAddress address in Dns.GetHostAddresses("www.google.com"))
{
Console.WriteLine(address.ToString());
}
link|flag
vote up 0 vote down

Try using the System.Net.Dns class

link|flag

Your Answer

Get an OpenID
or

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