我试图在我的C#程序中使用System.IO.Compression程序集。我目前正在运行CentOS 7,安装了最新版本的mono。
当试图在System.IO.Compression中使用ZipFile类时,我收到以下错误:
Program.cs(48,21):错误CS0103:当前上下文中不存在名称“ZipFile”编译失败:1个错误,0个警告
这是因为出于某种原因,默认情况下不包含System.IO.Compression,所以你必须添加程序集引用,我能够通过解决方案资源管理器在Visual Studio中这样做,但是在单声道中我没办法添加它。 在你说之前,是的,我添加了“使用System.IO.Compression;”这一行。
如果有人对如何将此程序集引用添加到mono有任何见解,那将不胜感激。
答案 0 :(得分:0)
我有一个类似的问题,并在问题I didn't find "ZipFile" class in the "System.IO.Compression" namespace
中找到了解决方案解决方案是对System.IO.Compression.FileSystem.dll的引用
例如。 mcs /reference:System.IO.Compression.FileSystem.dll Main.cs