2013-07-20 84 views

回答

1

查看WebClient类。

public void Download(string url, string filenameToSaveAs) 
{ 
    WebClient wclient = new WebClient(); 
    wclient.DownloadFileAsync(new Uri(url), filenameToSaveAs); 
} 
相关问题