我正在尝试从网站读取实时 RSS 提要。我正在使用以下代码。
public static List<RssNews> Read(string url)
{
var webClient = new WebClient();//error line
string result = webClient.DownloadString(url);
XDocument document = XDocument.Parse(result);
return (from descendant in document.Descendants("item")
select new RssNews()
{
Description = descendant.Element("description").Value,
Title = descendant.Element("title").Value,
PublicationDate = descendant.Element("pubDate").Value
}).ToList();
}
我得到的错误是:
找不到类型或命名空间名称。
请帮忙!