如何在pcap.net中获取所选LivePacketDevice的MAC地址?
var allDevices = LivePacketDevice.AllLocalMachine;
LivePacketDevice dev = allDevices[0];
最佳答案
使用LivePacketDeviceExtensions
静态方法:
public static MacAddress GetMacAddress(this LivePacketDevice livePacketDevice)
它在
PcapDotNet.Core.Extensions
命名空间的PcapDotNet.Core.Extensions
程序集中定义。关于c# - 我如何在pcap.net中获取所选设备的MAC地址,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35730723/