一个电脑可能有多个网络适配器,每个适配器都有自己Mac地址。
首先获取所有适配器对象。
然后就是遍历所有适配器对象,获取其地址。
主要用到 System.Net.NetworkInformation 命名空间下的 NetworkInterface (网络接口)类,可以把这个类对象当作一个网络适配器。
使用其静态函数 GetAllNetworkInterfaces() 可以获取所有适配器对象,得到一个组。
然后直接遍历每个实例对象,调用其实例函数 GetPhysicalAddress() 就得到了。
private void GetMac() { NetworkInterface[] allNetworkInterface = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface item in allNetworkInterface) { System.Console.WriteLine(item.GetPhysicalAddress()); } }