Any C#/.Net equivalent methods, or managed code examples for INET_NTOA and INET_ATON?
To make NTOA compatible with MySQL i had to do a Endian conversion
byte[] ip = BitConverter.GetBytes(ipInt); Array.Reverse(ip); IPAddress = new IPAddress(BitConverter.ToUInt32(ip,0))