Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 xamarin android 中使用 Ionic.Zip.dll 解压缩文件,它在调试模式下正确工作,但在发布模式下它给出以下错误。
'不支持压缩方法'
我的代码如下。
using (ZipFile zip = ZipFile.Read(ZipFilePath)) { zip.Password = password zip.ExtractAll(ExtractFilePath); }
请帮我。
提前致谢。