“HtmlAgilityPack.HtmlNode”不包含“SelectNodes”的定义,并且找不到接受“HtmlAgilityPack.HtmlNode”类型的第一个参数的扩展方法“SelectNodes”(您是否缺少 using 指令或程序集引用?)
我有设置配置,例如:
这是代码!!!
HttpClient client = new HttpClient();
string html = await client.GetStringAsync(Url);
HtmlDocument htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(html);
var a =htmlDocument.DocumentNode.SelectNodes("//p[@class='verse']");