// //将int进制转换 // private byte hex(int myHex) { byte[] a = BitConverter.GetBytes(myHex); return a[0];//这里返回的数组,a[0]表示int中的低两个字符
}