I a looking for a library that can compress text. Not short string but rather pages. Is there any known library or opensource code?
+1. And if you don't need error detection, you can also consider DeflateStream in the same namespace. It has about 200 bytes less overhead.
                  jdv
                   2010-10-21 10:15:47
                Thanks for info
                  Wajih
                   2010-10-21 10:27:46
                
                +2 
                A: 
                
                
              
            .Net has a couple of classes built-in for compression/decompression, Gzip and Deflate.
http://msdn.microsoft.com/en-us/library/system.io.compression.gzipstream.aspx
http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx
Example usage: http://www.csharphelp.com/2007/09/compress-and-decompress-strings-in-c/
                  Will
                   2010-10-21 10:14:30