Tôi không tìm thấy lớp "ZipFile" trong không gian tên "System.IO.Compression"
Tôi không thể sử dụng lớp "Zipfile" trong không gian tên "System.IO.Compression" mã của tôi là: using System; using System.IO; using System.IO.Compression; namespace ConsoleApplication { class Program { static void Main(string[] args) { string startPath = @"c:\example\start"; string zipPath = @"c:\example\result.zip"; string extractPath = @"c:\example\extract"; ZipFile.CreateFromDirectory(startPath, zipPath, CompressionLevel.Fastest,true); ZipFile.ExtractToDirectory(zipPath, extractPath); …