我应该使用什么 .NET 类来表示子网及其掩码?
我可以使用 System.Net.IPAddress 来表示单个 IP 地址,但是我可以使用什么来表示整个子网,包括网络地址和子网掩码?
I can use System.Net.IPAddress
to represent a single IP Address, but what can I use to represent an entire subnet, including the network address and the subnet mask?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您也可以使用 System.Net.IPAddress 来表示子网掩码。 它具有相同的形式,您需要执行的唯一实际操作是基于子网地址字节的位掩码。
I believe you can use the System.Net.IPAddress to also represent a subnet mask. It's of the same form, and the only real operation you need to do w/ it is a bitmask based on the bytes of the subnet address.