0
我正在嘗試從網站閱讀實時RSS訂閱。 以下代碼正在被我使用。在閱讀RSS訂閱時出現WebClient錯誤
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();
}
我得到的錯誤是:
類型或命名空間名稱找不到。
請幫忙!
請發佈完整的錯誤和堆棧跟蹤。 – Arran
完整錯誤是:錯誤無法找到類型或名稱空間名稱'WebClient'(您是否缺少使用指令或程序集引用?) – YashVj
@Arran - Stack Trace的含義是什麼? – YashVj