I'am trying to unzip files from .zip file in C# (Forms App) I got something like this:
System.IO.Compression.ZipFile.ExtractToDirectory(zipPath, extractPath);
i have strings zip and extract Path but i have an error "CS0234". My libraries:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Media;
using System.IO.Compression;
using System.IO;
Any ideas?
System.IO.Compression.FileSystem
assembly? Read the remarks. - dr.null