Hi I am trying to get device id of windows 7 phone using following code
byte[] result = null;
String id = null;
object uniqueId;
if (DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueId))
result = (byte[])uniqueId;
Problem is that I need this result in String. Can anyone tell me how to do this? Best Regards