摘要:/// /// 把号码用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...
阅读全文