问题
Is it possible to get unique number of phone (not SIM, phone number, but device number!) ??
Something like device serial number, producent code, IMEI etc?
I work with Windows Phone 7.1
回答1:
object uniqueId;
var hexString = string.Empty;
if (DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueId))
hexString = BitConverter.ToString((byte[])uniqueId).Replace("-", string.Empty);
Dont forget to specify ID_CAP_IDENTITY_DEVICE capability in the app manifest.
回答2:
you may use TAPI to retrieve IMEI using c#. refer to the this link.
回答3:
Type *#06# from the desktop(home) screen to get the IMEI no
来源:https://stackoverflow.com/questions/14702868/serial-number-of-phone-device