10
मुझे "System.IO.Compression" नामस्थान में "ZipFile" वर्ग नहीं मिला
मैं "Space.IO.Compression" नाम स्थान में "ज़िपफाइल" वर्ग का उपयोग नहीं कर सकता हूं, मेरा कोड है: 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); …