不是没有人知道,只是我好长时间没有登陆了.代码如下:
//本机名称
this.nameText.Text=Dns.GetHostName();
//取得的有的IP地址
this.ihe=new IPHostEntry();
//根据机器名称解析IP地址
this.ihe=Dns.Resolve(this.nameText.Text.Trim());
for(int i=0;i<this.ihe.AddressList.Length;i++)
{
this.IPText.AppendText(this.ihe.AddressList[i].ToString()+"\n");
}