英文:
How to get network adapter subnet mask in C#?
问题
你可以使用C#应用程序来查询网络适配器的子网掩码。
英文:
In Windows I can configure the IP address and subnet mask of a network adapter
How can I query this subnet mask from a C# application?
答案1
得分: 0
我终于自己找到了答案。原来子网掩码可以通过这个属性获取:
UnicastIPAddressInformation.IPv4Mask
英文:
I finally found the answer myself. Turns out the subnet mask can be obtained via this property:
UnicastIPAddressInformation.IPv4Mask
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论