摘要: //将16进制的字符串转为byte数组 string str = "0C9C17AB"; string tmpstr = ""; byte[] buf; if (str.Length%2!=0) { str = "0"+str; } buf=new byte[str.Length/2]; for ( 阅读全文
posted @ 2019-11-06 22:20 码农界的小学生 阅读(126) 评论(0) 推荐(0) 编辑