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 在当前上下文中不存在!虽然我已经包含了敏捷包的引用 dll!