IPAddress.GetAddressBytes Method
.NET Framework 4
Provides a copy of the IPAddress as an array of bytes.
Assembly: System (in System.dll)
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
For those wondering about byte order
The following IP "127.0.0.1" will return array [127, 0, 0, 1] no matter the host byte order. As individual element are single byte, you don't need to care about each element byte order. You can convert from ip to byte array, change a byte, and convert again to ip and the result will be always the same across machines.
A similar question asked in stackoverflow: http://stackoverflow.com/questions/1407938/c-ipaddress-getaddressbytes-method-what-byte-order
A similar question asked in stackoverflow: http://stackoverflow.com/questions/1407938/c-ipaddress-getaddressbytes-method-what-byte-order
- 9/6/2011
- IL-Fan