ICSharpCode.SharpZipLib,log4net,Memcached.ClientLibrary三个dll的打包下载
2021-01-28 02:56:22 172KB memcached
1
SharpZip 库 android 和ios 都能使用
2021-01-28 01:39:31 139KB zip unity3d
1
Unity读取Excel所需要库文件Excel.dll system.data ICSharpCode.SharpZipLib.dll
2020-11-24 09:57:18 346KB Excel Unity
1
ICSharpCode.SharpZipLib【内含0.86.0.518版本和0.84.0.0版本】 如果你报了异常形如: System.IO.FileNotFoundException:“未能加载文件或程序集“ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73”或它的某一个依赖项。系统找不到指定的文件。” 下载该dll并添加引用至项目即可
2020-01-03 11:22:43 132KB ICSharpCode. 0.86.0.518 0.84.0.0
1
unity读取excel文件所需要的dll文件。unity读取excel文件所需要的dll文件。unity读取excel文件所需要的dll文件。
2019-12-21 21:34:15 387KB Excel.dll ICSharpCode System.Data
1
asp.net文件和文件夹压缩 调用类库ICSharpCode.SharpZipLib.dll using System.IO; using ICSharpCode.SharpZipLib; using ICSharpCode.SharpZipLib.Checksums; using ICSharpCode.SharpZipLib.Zip; using ICSharpCode.SharpZipLib.GZip; using ICSharpCode.SharpZipLib.BZip2; using ICSharpCode.SharpZipLib.Zip.Compression; using ICSharpCode.SharpZipLib.Zip.Compression.Streams; protected void Button1Click(object sender, EventArgs e) { string[] str = new string[1]; str[0] = @"E:\9541241560\地学院\"; Zip(str); } #region 压缩 /// /// 压缩文件,默认目录为当前目录,文件名为当前目录名,压缩级别为6 /// /// 要压缩的文件或文件夹 public void Zip(params string[] fileOrDirectory) { Zip(6, fileOrDirectory); } /// /// 压缩文件,默认目录为当前目录,文件名为当前目录名 /// /// 压缩的级别 /// 要压缩的文件或文件夹 public void Zip(int zipLevel, params string[] fileOrDirectory) { if (fileOrDirectory == null) return; else if (fileOrDirectory.Length < 1) return; else { string str = fileOrDirectory[0]; if (str.EndsWith("\\")) str = str.Substring(0, str.Length - 1); str += ".zip"; Zip(str, zipLevel, fileOrDirectory); } } /// /// 压缩文件,默认目录为当前目录 /// /// 压缩后的文件 /// 压缩的级别 /// 要压缩的文件或文件夹 public void Zip(string zipedFileName, int zipLevel, params string[] fileOrDirectory) { if (fileOrDirectory == null) return; else if (fileOrDirectory.Length < 1) return; else { string str = fileOrDirectory[0]; if (str.EndsWith("\\")) str = str.Substring(0, str.Length - 1); str = str.Substring(0, str.LastIndexOf("\\")); Zip(zipedFileName, str, zipLevel, fileOrDirectory); } } /// /// 压缩文件 /// /// 压缩后的文件 /// 压缩的级别 /// 当前所处目录 /// 要压缩的文件或文件夹 public void Zip(string zipedFileName, string currentDire
2019-12-21 21:33:32 236KB .net 解压缩 SharpZipLib
1
unity通过C#读写文本文件工具ICSharpCode.SharpZipLib ,Excel.dll,Data.dll
2019-12-21 21:24:29 385KB C#工具
1
icsharpcode.sharpziplib.dll各版本下载(包含 0.86.0.518)
2019-12-21 20:40:59 1.64MB icsharpcode 0.86.0.518
1
ICSharpCode.SharpZipLib.dll
2019-12-21 20:38:14 68KB ICSharpCode
1
ICSharpCode.SharpZipLib.dll
2019-12-21 20:23:35 236KB ICSharpCode SharpZipLib dll
1