1 System license and and 2 system license

  • Thread starter Thread starter CompuTechSide
  • Start date Start date
C

CompuTechSide

Guest
I am working on mac address but no idea how to (1 System license and or 2 system license)through mac address ?

I have applied this

private string GetMacAddress()
{
string macAddresses = string.Empty;

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

return macAddresses;
}



Best Regards

Continue reading...
 
Back
Top