摘要:
{ // //16进制转字符串 public static byte[] HexToString(byte[] Str) { string String = Encoding.Default.GetString(Str); byte[] str = new byte[Str.Length / 2]; 阅读全文
摘要:
{ int Encryption::HexToStr(char *Hex) { int _0 = 0; int _1 = 0; char buf[2] = { 0 }; if (Hex[0] >= '0' && Hex[0] <= '9') { buf[0] = Hex[0]; _0 = atoi( 阅读全文