如何找到使用 LAN 网络连接的机器的所有 IP 地址。
foreach (NetworkInterface netInterface in NetworkInterface.GetAllNetworkInterfaces())
{
IPInterfaceProperties ipProps = netInterface.GetIPProperties();
foreach (UnicastIPAddressInformation addr in ipProps.UnicastAddresses)
{
listBox1.Items.Add(addr.Address.ToString());
}
}
这是我正在使用的代码.. 但此代码仅返回我的本地 IP 和 127.0.0.1。找不到其他ip地址。