Pages

Showing posts with label mac. Show all posts
Showing posts with label mac. Show all posts

Wednesday, November 27, 2013

How to get MAC address

If you need to get MAC addresses of installed network adapters, then you can use this:

using System.Net.NetworkInformation;

NetworkInterface[] arr = NetworkInterface.GetAllNetworkInterfaces();

foreach (NetworkInterface item in arr)
{
    PhysicalAddress mac = item.GetPhysicalAddress();
}