views:

45

answers:

3

I a looking for a library that can compress text. Not short string but rather pages. Is there any known library or opensource code?

+5  A: 

You may take a look at GZipStream and/or DeflateStream.

Darin Dimitrov
+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
Thanks for info
Wajih
+2  A: 

there is SharpZipLib

Glum