Any support in C# for zlib inflate/deflate?

G

Guest

I need to use standard zlib inflate/deflate procedures... does c# support
this?

how/where are the relevant classes?
 
G

Guest

There is native support for the standard inflate / deflate method in the .NET
2.0 Compression namespace. If you want more control, ICSharpCode.SharpZiplib
is an open source library that offers more options and is compatible with the
native Zlib functions.
Peter
 
L

Lebesgue

..NET Framework 2.0 has implementation of zip algorithms, but can't handle
zip files (e.g. read the headers etc)look at the System.IO.Compression
namespace. Another possibility is to use libraries from J# or some third
party zip libraries, like the open source sharpziplib.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top