在 vb.net 中将子网掩码转换为二进制(八位字节)
如何将子网掩码转换为二进制,以便最终得到 32 位数字?
我可以使用 Convert.ToString(Long-to-convert, 2) 将其转换为二进制,
但返回 255.255.255.0 的子网掩码(但它返回时不带空格):
1111 1111 1111 1111 1111 1111 0
当我想要它时是:
1111 1111 1111 1111 1111 1111 0000 0000
How can I convert a subnetmask into binary, so I'll end up with 32 digits?
I can convert it into Binary, using Convert.ToString(Long-to-convert, 2)
But a subnetmask of 255.255.255.0 returns(it returns it without the spaces though):
1111 1111 1111 1111 1111 1111 0
When I want it to be:
1111 1111 1111 1111 1111 1111 0000 0000
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果单独转换每个字节,那么在连接步骤之前,您可以对每个值执行 PadLeft(8, '0') 。这将添加缺失的“0”。
If you convert each byte separately then before the concatenate step you can do a PadLeft(8, '0') on each value. This would add the missing '0's.