如何读取 xml 元素,例如:
<content:encoded><![CDATA[<blockquote><p>some data here ]]<content:encoded>
我想在 C# 中读取上面的 xml 节点,但是当我使用...
"content:encoded"
..随着xpath运行时错误的到来:
IXmlNode node = parent.SelectSingleNode("content:encoded");
我应该如何为上面的 xml 编写 xpath?