Reputation: 144
Is there any way to import ZipFile class (System.IO.Compression.FileSystem.dll in .NET 4.5) in solution in .NET 3.5? - Downloading the dll and adding it in reference will work ?
Upvotes: 0
Views: 591
Reputation: 27944
Zip is a standard for compression, it does not matter how you have compressed the file. Any other program that supports zip will be able to decompress your file. If you compress with System.IO.Compression.FileSystem.dll from .net 4.5 you can decompress with any libary for zip support which is supported in 3.5. Have a look at DotNetZip or SharpZipLib.
Upvotes: 1