摘要: /// /// 把号码用BCD进行压缩编码。 /// /// The num8 bit byte. /// public static byte[] ByteArrayToBCD(byte[] Num8BitByte)//8位的ascii码 { byte[] Num4bitByte = new byte[8]; Num4bitByte = BitConverter.GetBytes(0xffffffffffffffff); for (int i = 0; i /// BCDs to string. /// /// The BCD num. /// public static stri... 阅读全文
posted @ 2014-03-06 11:42 94cool 阅读(2099) 评论(0) 推荐(0)