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

获取本地IP和mac等信息

时间:2014-07-16 19:02:51      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:os   for   io   cti   re   c   

 

1获取mac

protected string getHostMacName()
{
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;
}

2.获取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();
}

获取本地IP和mac等信息,布布扣,bubuko.com

获取本地IP和mac等信息

标签:os   for   io   cti   re   c   

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

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