我正在尝试与 WebClient 合作,但它给了我错误,所以我检查了几个论坛(包括这个),他们告诉我把
在文件顶部:
using System.Net
在我想使用 WebClient 的地方之后:
WebClient webClient = new WebClient();
webClient.DownloadFile ("http://mysite.com/myfile.txt", @"c:\myfile.txt");
我得到这个错误:
找不到类型或命名空间名称“WebClient”(您是否缺少 using 指令或程序集引用?)
在其他论坛中,我刚刚在上面编写的代码似乎是解决方案,但对我不起作用。