I have a IPv4
address provided as a uint
and I would like to convert it to string
(for the purpose of logging).
I would normally achieve this in C# using the System.Net.IPAddress
constructor...but it seems that System.Net.IPAddress
is not available in C# for WinRT/Windows
Store. Does anyone have an equivalent way to do this conversion?
Thank you.