Я могу использовать HtmlAgilityPack в консольном приложении, но при попытке в приложении WPF я всегда получаю эту ошибку в этой строке document.DocumentNode.Descendants()
:
Could not find an implementation of the query pattern for source type 'System.Collections.Generic.IEnumerable<HtmlAgilityPack.HtmlNode>'. 'Where' not found. Are you missing a reference to 'System.Core.dll' or a using directive for 'System.Linq'?
Это код:
public partial class Window1 : Window
{
public Window1()
{
var webget = new HtmlWeb();
var document = webget.Load("http://google.com");
var p = from program in document.DocumentNode.Descendants()
where program.Name == "a"
select program.InnerText;
InitializeComponent();
}
}
У кого-нибудь есть идея, почему я получаю эту ошибку?
Спасибо.