我已经从 codeplex.com 下载了一个 .dll 文件的文件夹,以便在我的项目中添加和使用一个类,但我不知道如何使用它们。它是关于 c# 的 zip 文件,这里是链接: http:// dotnetzip.codeplex.com/
谢谢!
我已经从 codeplex.com 下载了一个 .dll 文件的文件夹,以便在我的项目中添加和使用一个类,但我不知道如何使用它们。它是关于 c# 的 zip 文件,这里是链接: http:// dotnetzip.codeplex.com/
谢谢!
添加对 DLL 的引用并尝试示例代码:
using (ZipFile zip = new ZipFile())
{
// add this map file into the "images" directory in the zip archive
zip.AddFile("c:\\images\\personal\\7440-N49th.png", "images");
// add the report into a different directory in the archive
zip.AddFile("c:\\Reports\\2008-Regional-Sales-Report.pdf", "files");
zip.AddFile("ReadMe.txt");
zip.Save("MyZipFile.zip");
}
将它们作为引用添加到您的项目/解决方案中,并using
在您希望使用的每个名称空间中包含语句。
然后这些类将可在您的应用程序中使用。