Yes, do you have any idea how to convert domain to ip that doesn't need NetFramework 4.0 or something like that.... using c#?
Thanks!
Thanks!
string iplookup = "www.example.com";
IPAddress[] addresslist = Dns.GetHostAddresses(iplookup);
foreach (IPAddress theaddress in addresslist)
{
Console.WriteLine(theaddress.ToString());
}