foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces()) { if (nic.OperationalStatus == OperationalStatus.Up) { _macAddress += nic.GetPhysicalAddress().ToString(); break; } }
Login to post response