ZIP Compression wrapper for .NET 2.0 Compression assemblies
I was using the sharpziplib with .NET 1.1, and now that I saw the System.IO.Compression namespace, I wonder why not using it.
I tried to use it, but found that it was a little complex, just for the basic need of uncompressing zip files.
The dotNetZip library is wrapping the compression namespace and exposing simple clasess like ZipFile, ZipEntry etc.
From the Microsoft Codeplex, check this out http://www.codeplex.com/DotNetZip/.
-f.