System.Net.Webclient无法运行' WebClient'无法找到

时间:2013-10-03 16:55:03

标签: c# visual-studio-2013 windows-8.1

我正在尝试使用WebClient,但它给了我错误,所以我在几个论坛(包括这个)和他们在哪里告诉放置

在文件顶部:

using System.Net 

在我想要的地方使用WebClient:

 WebClient webClient = new WebClient();
 webClient.DownloadFile ("http://mysite.com/myfile.txt", @"c:\myfile.txt");

我收到了这个错误:

找不到类型或命名空间名称“WebClient”(您是否缺少using指令或程序集引用?)

在其他论坛中,我上面写的代码似乎是解决方案但不适合我。

1 个答案:

答案 0 :(得分:19)

鉴于您的代码,听起来您可能正在构建Windows应用商店应用 - 在这种情况下,您需要使用HttpClient代替WebClient