I'm making a YouTube Downloader, I've finished everything [ The application is completed now ] but this annoys me ;
How to make something can pause this downloader
try
{
wc = new WebClient();
wc.DownloadProgressChanged += new DownloadProgressChangedEventHandler(wc_DownloadProgressChanged);
wc.DownloadFileCompleted += new AsyncCompletedEventHandler(wc_DownloadFileCompleted);
CancelBtn.Enabled = true;
wc.DownloadFileAsync(new Uri(link), dwnFile);
ResultLabel.Visible = false;
}