摘要: /// /// 字符串转16进制字节数组 /// /// /// public static byte[] Str_ToHexByte(string hexString) { hexString = hexString.Replace(" ", ""); if ((hexString.Length % 2) != 0) hexString += " "; byte[] returnBytes ... 阅读全文
posted @ 2013-12-10 15:14 bdf216 阅读(412) 评论(0) 推荐(0) 编辑