【发布时间】:2013-03-24 22:02:53
【问题描述】:
在c#中没有互联网连接时,有什么方法可以获取计算机的mac地址? 当我有连接时我能够获得,但当我离线时无法获得。但我强烈需要我的工作的 mac 地址。
我的在线代码;
var macAddr =
(from nic in NetworkInterface.GetAllNetworkInterfaces()
where nic.OperationalStatus == OperationalStatus.Up
select nic.GetPhysicalAddress().ToString()).FirstOrDefault();
【问题讨论】:
-
你能去掉
where nic.OperationalStatus == OperationalStatus.Up这一行吗? -
在线时,mac地址; 4CEB428D5072 离线时,mac地址为4CEB428D5073。为什么?
标签: c# mac-address