使用htmlagility pack从div获取数据时出现“Value not not null”错误, 我的代码是:
var varitem = doc.DocumentNode.SelectNodes("//*[@id='title']")
.SelectMany(x => x.Descendants("div"));
我尝试使用代码
来判断值是否为nullif (object.ReferenceEquals(doc.DocumentNode.SelectNodes("//*[@id='title']")
.SelectMany(x => x.Descendants("div")), null))
但我又得到同样的错误。