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!