Code:
while (i <= ServID)
{
label1.Text= "Downloading Update " + i + " Of " + ServID;
down.DownloadFileAsync(new Uri(Dlpath + i + "/" + i + ".7z"), AppDomain.CurrentDomain.BaseDirectory + "/" + i + ".7z");
// backgroundWorker1.ReportProgress(30);
// backgroundWorker1.ReportProgress(80);
i++;
}
WebClient does not support concurrent I/O operations.
how i fix this
tnx






