Hi I'm trying to get the device id on a Windows 7 phone using the following code
byte[] result = null;
String id = null;
object uniqueId;
if (DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueId))
result = (byte[])uniqueId;
The problem is that I need this result in String. Can someone tell me how to do this? Regards
source
share