Any C#/.Net equivalent methods, or managed code examples for INET_NTOA and INET_ATON?
Just to clarify, you're looking to parse a string representation of an IP Address, to an IPAddress object?
(That's my understanding of this article explaining INET_NTOA)
In that case ,it's System.Net.IPAddress.Parse("127.0.0.1")
, and you can use the .ToString()
off an IPAddress to get the string rep back out.