如何根据对方的域名获得ip地址
如题
------解决方案--------------------DNS解析
string IP=System.Net.Dns.GetHostByName( "supplier.foxconn.com ").AddressList[0].ToString();
------解决方案--------------------string IP = System.Net.Dns.GetHostByName( "www.sina.com.cn ").AddressList[0].ToString();
MessageBox.Show(IP);
拿的到IP啊