将IP地址转换为int,(即c#中的inet aton)
如何在 C# 中执行相同的 unix 函数 inet_aton?
Possible Duplicates:
.NET Equivalant for INET_NTOA and INET_ATON
How to convert an IPv4 address into a integer in C#?
How do I perform the same unix function inet_aton in c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 IPAddress.Parse (或 TryParse ) IPAddress 类的方法。
一个例子是:
您需要考虑字节的主机和网络顺序,但 IPAddress 类上有几个静态方法可以处理这个问题。
Check out the IPAddress.Parse (or TryParse) methods of the IPAddress class.
An example would be:
You will need to take into account the host and network order of the bytes, but there's several static methods on the IPAddress class for handling that.
或 http://msdn.microsoft.com/en- us/library/system.net.ipaddress.parse.aspx
你可以像我一样扩展你自己的IP类。
or http://msdn.microsoft.com/en-us/library/system.net.ipaddress.parse.aspx
you can extend your own IP class like I did.
试试这个我认为是同样的问题,它有答案(享受)
Try this i think is the same question and it has an answer (enjoy)