AlexHedley / broadcom-community-parser

Broadcom Community Parser
MIT License
0 stars 0 forks source link

Download all images #1

Open AlexHedley opened 1 year ago

AlexHedley commented 1 year ago
using (WebClient client = new WebClient()) 
{
    client.DownloadFile(new Uri(url), @"c:\temp\image35.png");
    // OR 
    client.DownloadFileAsync(new Uri(url), @"c:\temp\image35.png");
}