wpf 获取设备的MAC地址

public static void ShowNetworkInterfaces()
{

        IPGlobalProperties computerProperties = IPGlobalProperties.GetIPGlobalProperties();
        NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces();
       // HostName = computerProperties.HostName;
        Console.WriteLine("Interface information for {0}.{1}     ",
                computerProperties.HostName, computerProperties.DomainName);
        if (nics == null || nics.Length < 1)
        {
            Console.WriteLine("  No network interfaces found.");
            return;
        }
        foreach (NetworkInterface adapter in nics)
        {
            IPInterfaceProperties properties = adapter.GetIPProperties(); //  .GetIPInterfaceProperties();
            string Description = adapter.Description;//接口的描述
            string NetworkInterfaceType = adapter.NetworkInterfaceType.ToString();//获取接口类型
            PhysicalAddress address = adapter.GetPhysicalAddress();//返回MAC地址
            if (NetworkInterfaceType != "Loopback" && NetworkInterfaceType == "Ethernet")
            
                EthernetPath = adapter.GetPhysicalAddress().ToString();
            //byte[] bytes = address.GetAddressBytes();
            //for (int i = 0; i < bytes.Length; i++)
            //{
            //    //.ToString("X2") 将byte数组转换成字符串
            //    Console.Write("{0}", bytes[i].ToString("X2"));
            //    if (i != bytes.Length - 1)
            //    {
            //        Console.Write("-");
            //    }
            //}
        }
    
    }
发布了115 篇原创文章 · 获赞 36 · 访问量 9898

猜你喜欢

转载自blog.csdn.net/weixin_44548307/article/details/102908947
WPF