public static byte[] CompressToBytes(this string target) { return(CompressedUtf8String.Compress(target)); }
public static string DecompressToString(this byte[] bytes) { return(CompressedUtf8String.Expand(bytes)); }