本文介绍了我如何...收集ComboBox的连接| VB.Net的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Dim a = System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces
Dim b = a.Where( Function (x)x.NetworkInterfaceType = Net.NetworkInformation.NetworkInterfaceType.GenericModem)
对于 每个 i 在 b
conList.Items .Add(i.Name)
下一页
[]
解决方案
Dim a = System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces Dim b = a.Where(Function(x) x.NetworkInterfaceType = Net.NetworkInformation.NetworkInterfaceType.GenericModem) For Each i In b conList.Items.Add(i.Name) Next
解决方案
这篇关于我如何...收集ComboBox的连接| VB.Net的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!