Hi All
I would like your opinions on what the best/fastest way to download files from a webserver would be?
I have used WebClient. but most of the time it downloads slower than my web broswer...
WebClient c = new WebClient();
using(c)
{
c.DownloadFile("http://blahblah.com/somefile.html", "righthere.html");
}