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