C# 获取MAC地址

Posted zengjf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 获取MAC地址相关的知识,希望对你有一定的参考价值。

/**********************************************************************
 *                         C# 获取MAC地址
 * 说明:
 *     在C#中获取本机的MAC地址,文中提供两个参考,一个是能够所有的MAC
 * 地址,一个是获取第一个MAC地址。
 *
 *                                  2016-12-9 深圳 南山平山村 曾剑锋
 *********************************************************************/

一、参考文档:
    1. Reliable method to get machines MAC address in C#
        http://stackoverflow.com/questions/850650/reliable-method-to-get-machines-mac-address-in-c-sharp

二、解决方法:
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Net.NetworkInformation; 

    namespace LocalDetectTest
    {
        class NetTools
        {
            /// <summary>
            /// Finds the MAC address of the NIC with maximum speed.
            /// </summary>
            /// <returns>The MAC address.</returns>
            public static void PrintAllMacAddress()
            {
                const int MIN_MAC_ADDR_LENGTH = 12;
                string macAddress = string.Empty;
                long maxSpeed = -1;

                foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces())
                {
                    Console.WriteLine(
                        "Name: " + nic.Name + 
                        " Found MAC Address: " + nic.GetPhysicalAddress() +
                        " Type: " + nic.NetworkInterfaceType);

                    string tempMac = nic.GetPhysicalAddress().ToString();
                    if (nic.Speed > maxSpeed &&
                        !string.IsNullOrEmpty(tempMac) &&
                        tempMac.Length >= MIN_MAC_ADDR_LENGTH)
                    {
                        Console.WriteLine("New Max Speed = " + nic.Speed + ", MAC: " + tempMac);
                        maxSpeed = nic.Speed;
                        macAddress = tempMac;
                    }
                }

                // return macAddress;
            }

            /// <summary>
            /// Finds the MAC address of the first operation NIC found.
            /// </summary>
            /// <returns>The MAC address.</returns>
            public static string GetFirstMacAddress()
            {
                string macAddresses = string.Empty;

                foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces())
                {
                    if (nic.OperationalStatus == OperationalStatus.Up)
                    {
                        macAddresses += nic.GetPhysicalAddress().ToString();
                        Console.WriteLine(macAddresses);
                        break;
                    }
                }

                return macAddresses;
            }
        }
    }

 

以上是关于C# 获取MAC地址的主要内容,如果未能解决你的问题,请参考以下文章

C#获取MAC地址

在 WCF 服务 C# 的服务器端获取客户端的 Mac 地址不重复(在 WCF 3.0 中获取客户端 IP 地址)

在 C# 中格式化 MAC 地址

在C#中获取机器MAC地址的可靠方法

C# 获取正在使用的Mac地址

C#通过本地IP获取本地MAC地址(多个接口)