Ionic.zip 1.9.1.8 -

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

Install-Package Ionic.Zip Or .NET CLI:

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

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

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