最簡單的C# 獲取 MAC 地址 IP 地址

iDotNetSpace發表於2010-03-01
 1 //可以通過比較 NetworkInterface 的 NetworkInterfaceType 篩選不需要的內容
2  NetworkInterface[] nis = NetworkInterface.GetAllNetworkInterfaces();
3 foreach (NetworkInterface ni in nis)
4 {
5 PhysicalAddress pa = ni.GetPhysicalAddress();
6 string mac = pa.ToString();
7 }
8
9 string myHostName = Dns.GetHostName();
10 IPHostEntry ips = Dns.GetHostEntry(myHostName);
11 foreach (IPAddress ip in ips.AddressList)
12 {
13 string ipString = ip.ToString();
14 }

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-628254/,如需轉載,請註明出處,否則將追究法律責任。

相關文章