Tag: C#
How to Get Unique Device ID from Windows Phone 8 Using C#?
Do you want to get the unique device id of the Window phone 8 programatically using C#? , you can do it using the DeviceExtendedProperties defined in the Microsoft.Phone.Info name and use the “DeviceUniqueId” property name to get the device id in byte array and then convert it to base 64 string . How to Get Unique Device ID from Windows Phone Using C#? Below…
How to Get the Random Number in C# ?
Below is a sample code snippet that shows how to get a random number in C#. How to Get the Random Number in C# ?