In C # to download a file, use the code:
using System.Net;
void Baixar(string url, string saida)
{
WebClient wc=new WebClient();
wc.DownloadFileAsync(new Uri(url), saida);
}
So far I have not found any well-explained code regarding...
asked by
14.01.2015 / 18:02