码迷,mamicode.com
首页 > 其他好文 > 详细

获取IP和mac地址

时间:2014-08-01 09:12:21      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   cti   new   res   ad   c   

1.获取IP

static string GetLocalIp()
{
string hostname = Dns.GetHostName();//得到本机名
//IPHostEntry localhost = Dns.GetHostByName(hostname);//方法已过期,只得到IPv4的地址
IPHostEntry localhost = Dns.GetHostEntry(hostname);
IPAddress localaddr = localhost.AddressList[0];
return localaddr.ToString();
}

2.获取mac地址

protected string getHostIpName()
{
string mac = "";
ManagementClass mc;
mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();
foreach (ManagementObject mo in moc)
{
if (mo["IPEnabled"].ToString() == "True")
mac = mo["MacAddress"].ToString();
}
return mac;
}

获取IP和mac地址,布布扣,bubuko.com

获取IP和mac地址

标签:os   io   for   cti   new   res   ad   c   

原文地址:http://www.cnblogs.com/ChineseMoonGod/p/3884138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!