我有一个这样的 xml:
<?xml version="1.0" encoding="UTF-8"?>
<InsertReceipts>
<receipts xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<a:string>
<![CDATA[ test]]>
</a:string>
</receipts>
</InsertReceipts>
我想从这个 xml 中提取元素 a:string,但不知道怎么做?
当我使用 XmlElement foo = (XmlElement)doc.SelectSingleNode("//a:string");
它给出了一个解析错误
反馈和帮助表示赞赏