2017-08-01 23 views

答えて

3

することはできループのすべてのネットワークアダプタと各アダプタからのインターフェイスの種類を取得:

Dim networkInterfaces As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces() 

For Each networkInterface As NetworkInterface In networkInterfaces 
    Console.WriteLine("Name: {0} - Type: {1}", networkInterface.Name, networkInterface.NetworkInterfaceType) 
Next 

他の類似のSO/MSDNの質問:

関連する問題