A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
You can filter the virtual adaptor and skip it as there's no mac address associated with it.
Below is the quick code snippet.
var adapters = NetworkInterface.GetAllNetworkInterfaces();
foreach (NetworkInterface adapter in adapters)
{
if (adapter.NetworkInterfaceType == NetworkInterfaceType.Loopback ||
adapter.NetworkInterfaceType == NetworkInterfaceType.Tunnel)
{
Console.WriteLine("Virtual Adapter: " + adapter.Description);
}
}