摘要: 15位IMEI字符串转8位BCD码 public static string SwapStr(string str) { return (str.Substring(1, 1) + str.Substring(0, 1)); } public static byte[] HexStrToBCD(st 阅读全文
posted @ 2020-07-09 11:02 bitwoods 阅读(1542) 评论(0) 推荐(0)