学习C#语言时,经常会遇到C#获取设备的ID问题,这里将介绍C#获取设备的ID问题的解决方法。
1.C#获取设备的ID(本地)
我们查看Window CE 4.2的SDK文档,得知获取本地设备ID的函数是BthReadLocalAddr,在btdrt.dll中。SDK文档中的英文原文是这样的:“This function retrieves the Bluetooth address of the current device.”好了,知道了这个就好说了:
首先封装本地托管函数:
- [DllImport("Btdrt.dll", SetLastError=true)]
- public static extern int BthReadLocalAddr(byte[] pba);
- //这个函数得到的本地DeviceID也是一组byte数组,为了向人们显示出来,我们要把它变为String:
- string text1 = "";
- text1text1 = text1 + pba[5].ToString("X2") + ":";
- text1text1 = text1 + pba [4].ToString("X2") + ":";
- text1text1 = text1 + pba [3].ToString("X2") + ":";
- text1text1 = text1 + pba [2].ToString("X2") + ":";
责任编辑:佚名 来源: 博客园 相关推荐2009-09-17 17:13:54
2009-08-14 10:51:43
2009-08-07 11:26:53
2009-08-31 09:37:09
2009-08-26 13:15:38
2009-08-14 17:58:05
2009-08-26 15:46:01
2009-06-24 10:25:25
2009-09-02 17:07:06
2009-07-31 13:48:34
2009-08-24 14:43:35