摘要: hex string to byte[]public static byte[] StringToByte1(string value) { int len = value.Length / 2; byte[] ret = new byte[len]; for (int i = 0; i < len; i++) ret[i] = (byte)Convert.ToInt32(value.Sub... 阅读全文
posted @ 2008-10-24 09:49 绿蚂蚁 阅读(1901) 评论(3) 推荐(0) 编辑