Search code examples
c#htonl

ntohs() and ntohl() equivalent?


Are there net to host conversion functions in C#? Googling and not finding much. :P


Solution

  • IPAddress.HostToNetworkOrder and IPAddress.NetworkToHostOrder?

    Each method has overloads for 16, 32 and 64 bit integers.