Agility Pack Descendants功能问题

时间:2012-12-01 20:32:48

标签: c# html-agility-pack

 public string getContent(string webAddress)
    {
        HtmlAgilityPack.HtmlWeb web = new HtmlAgilityPack.HtmlWeb();
        HtmlDocument doc = web.Load(webAddress);
        return string.Join(" ", doc.DocumentNode.Descendants().Select(x => x.InnerText));
    }

我正在使用此功能尝试检查该功能的作用!但我得到的异常告诉我当前上下文中不存在函数Decendants!虽然我已经包含了agility pack的refrenced dll!

1 个答案:

答案 0 :(得分:2)

您需要使用支持htmlagilitypack兼容集合的LINQ的最新版本来导航HTML树

使用此latest版本!