以下是我在 Windows XP 中获取默认 NIC 的代码,但相同的代码在 Windows 7 中不起作用。阅读 MSDN 后真的很困惑。有什么解决办法吗?
//----------------- Getting all the Nic's --------------------
foreach (NetworkInterface nic in NetworkInterface.GetAllNetworkInterfaces())
{
//------------ Getting properties of IPV4 ----------------
IPInterfaceProperties ipProps = nic.GetIPProperties();
//------------ Getting the Ip Properties -----------------
if (ipProps.GetIPv4Properties() != null)
{
dic.Add(ipProps.GetIPv4Properties().Index, nic.Name);
}
错误:请求协议未配置,或没有实现。