Beispiel #1
0
        public void Deflate()
        {
            string hello = "hello world";

            byte[] bytes  = Zlib.DeflateString(hello);
            string base64 = Base64.Encode(bytes);
        }