Ionic.zip 1.9.1.8 -

using Ionic.Zip;

That being said, here's some general information about Ionic.Zip 1.9.1.8:

You can install Ionic.Zip via NuGet Package Manager Console: ionic.zip 1.9.1.8

// Unzipping files using (ZipFile zip = ZipFile.Read("example.zip")) { zip.ExtractAll(); }

Install-Package Ionic.Zip Or .NET CLI:

If you are still having trouble finding the library, consider checking out nuget.org .

The best place to download Ionic.Zip is from the official Ionic website or through a package manager like NuGet. using Ionic

// Zipping files using (ZipFile zip = new ZipFile()) { zip.AddItem("example.txt"); zip.Save("example.zip"); }