0

I'm using dns to ip script but it always give me the old ip ( maybe it using cache or something like that ) how i can get the new dns ip ?

            var ips = System.Net.Dns.GetHostEntry("mann.chickenkiller.com").AddressList;
        foreach (var ip in ips)
        {
            MessageBox.Show(ip.ToString());
        }

0 Answers0