예제 #1
0
 public static object DecompressHex2Memory(string value)
 {
     if (string.IsNullOrEmpty(value))
     {
         return(null);
     }
     return(MemoryDecompress(ConverService.Hex2Bytes(value)));
 }
예제 #2
0
 /// <summary>
 /// 将16进制字符串解压缩成对象
 /// </summary>
 /// <param name="hexString"></param>
 /// <returns></returns>
 public static object DecompressHex2Object(string hexString)
 {
     return(DecompressToObject(ConverService.Hex2Bytes(hexString)));
 }