i have hex values in the format of 4a0e94ca etc, and i need to convert them into IP's, how can i do this in C# ?
|
|
|||||||||||||||||
|
|
|
If the values represent IPv4 addresses you can use the
If they represent IPv6 addresses you should convert the hex value to a byte array and then use this IPAddress constructor overload to construct the IPAddress. |
||||||||
|
|
|
Check http://stackoverflow.com/questions/1139957/c-convert-int-to-hex-and-back-again
|
||
|
|
|
Well, take the format of an IP in this form:
To get it into a single number, you take each part, OR it together, while shifting it to the left, 8 bits.
Thus, you can reverse this process for your number. Like so:
-- Edit Other posters probably have 'cleaner' ways of doing it in C#, so probably use that in production code, but I do think the way I've posted is a nice way to learn the format of IPs. |
||||||
|
