AI智能
改变未来

c# 获取所有网卡的信息

public static void DisplayTypeAndAddress(){IPGlobalProperties computerProperties = IPGlobalProperties.GetIPGlobalProperties();NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces();Console.WriteLine(\"Interface information for {0}.{1}     \",computerProperties.HostName, computerProperties.DomainName);foreach (NetworkInterface adapter in nics){IPInterfaceProperties properties = adapter.GetIPProperties();Console.WriteLine(adapter.Description);Console.WriteLine(String.Empty.PadLeft(adapter.Description.Length,\'=\'));Console.WriteLine(\"  Interface type .......................... : {0}\", adapter.NetworkInterfaceType);Console.WriteLine(\"  Physical Address ........................ : {0}\",adapter.GetPhysicalAddress().ToString());Console.WriteLine(\"  Is receive only.......................... : {0}\", adapter.IsReceiveOnly);Console.WriteLine(\"  Multicast................................ : {0}\", adapter.SupportsMulticast);Console.WriteLine();}}}

相关链接:
NetworkInterface.NetworkInterfaceType 属性 (System.Net.NetworkInformation) | Microsoft Docs

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » c# 获取所有网卡的信息