摘要: 基础知识点:1、获取WP7的DeviceUniqueId:public string GetDeviceUniqueId(){ string strUniqueId = null; object uniqueId = DeviceExtendedProperties.GetValue("DeviceUniqueId"); if (uniqueId != null) { byte[] uniqueBytes = (byte[]) uniqueId; strUniqueId = Convert.ToBase64String(uniqueBytes); } return st.. 阅读全文
posted @ 2012-04-13 15:15 求道2011 阅读(316) 评论(0) 推荐(0)