Best .NET Framework compression class?

Posted by Jack on Stack Overflow See other posts from Stack Overflow or by Jack
Published on 2010-05-10T13:32:35Z Indexed on 2010/05/10 13:44 UTC
Read the original article Hit count: 254

Filed under:
|

Hi all

Yes, I know GZipStream or DeflateStream is the common ones in .NET Framework which handle compression/decompression.

I wish to have compress/decompress functions in my program, but

  1. I wish a .NET Framework C# one, not a 3rd party open source. I can't use because of those copyright restrictions in my program.

  2. GZipStream and DeflateStream are not so good. for e.g., GZipStream compress a file to 480KB while 7Zip compress the same file to the size of 57KB.

Does Microsoft have other good compression methods???

Thanks

© Stack Overflow or respective owner

Related posts about compress

Related posts about c#