我试图解析的一段 HTML 包含一些不带引号的属性值,例如宽度和高度属性:
<img src="/static/logo.png" width=75 height=90 />
在 C# 代码中,阅读器会一直读取到下一个锚标记。
while (reader.ReadToFollowing("a"))
此语句报告 XmlException:
'75' is an unexpected token. The expected token is '"' or '''. Line 16, position 37.
是否有一些 XmlReaderSetting 使 XmlReader 更宽松?我无法控制生成的 HTML。