show/hide this revision's text 2 Changed sample code so that it only gets the address for *active* adapters.

Since .Net 2.0 there's been a NetworkInterface class in the System.Net.NetworkInformation namespace that will give you this information. Try this:

        foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces())
        {
            if (nic.OperationalStatus =NetworkInterface.GetAllNetworkInterfaces()[0];
= Up)
            {
                Console.WriteLine(nic.GetPhysicalAddress().ToString());
                break;
            }
        }
show/hide this revision's text 1

Since .Net 2.0 there's been a NetworkInterface class in the System.Net.NetworkInformation namespace that will give you this information. Try this:

NetworkInterface nic = NetworkInterface.GetAllNetworkInterfaces()[0];
Console.WriteLine(nic.GetPhysicalAddress().ToString());