using Microsoft.Win32; using System; using System.Collections; using System.Collections.Generic; using System.Net.NetworkInformation; using System.Net.Sockets; namespace Common { public class NetworkHelper { /// <summary></summary> /// 显示本机各网卡…
NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface ni in interfaces) { if (ni.NetworkInterfaceType == NetworkInterfaceType.Wireless80211) { foreach (UnicastIPAddressInformation ip in ni.GetIPProperti…