我应该使用什么 .NET 类来表示子网及其掩码?

发布于 2024-07-25 00:03:52 字数 75 浏览 5 评论 0原文

我可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月下客 2024-08-01 00:03:52

我相信您也可以使用 System.Net.IPAddress 来表示子网掩码。 它具有相同的形式,您需要执行的唯一实际操作是基于子网地址字节的位掩码。

System.Net.IPAddress i = System.Net.IPAddress.TryParse("10.10.1.1");
Byte[] b = i.GetAddressBytes();

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.

System.Net.IPAddress i = System.Net.IPAddress.TryParse("10.10.1.1");
Byte[] b = i.GetAddressBytes();
嘴硬脾气大 2024-08-01 00:03:52
struct NetworkIPAddress
{
  public IPAddress IP;
  public uint Mask;
}
struct NetworkIPAddress
{
  public IPAddress IP;
  public uint Mask;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文