Example #1
0
 public static string Decompress(byte[] bytes)
 {
     return(Encoding.UTF8.GetString(CLZF.Decompress(bytes)));
 }
Example #2
0
 public static string DecompressBytesToString(byte[] toDecrypt)
 {
     return(Encoding.UTF8.GetString(CLZF.Decompress(toDecrypt)));
 }