0
我可以讀這樣的XML ...未設置爲一個實例讀取XML命名空間
var xml = new XmlDocument();
xml.Load(fileName);
var myVal = SingleElement(xml, "BOOKS/AUTHOR/NAME")
public string SingleElement(XmlDocument xdoc, string thePath)
{
string value;
try
{
return xdoc.SelectSingleNode(thePath).InnerText;
}
catch (Exception x)
{
value = string.Empty;
}
return value;
}
但如果XML文件具有類似<ns0:BOOKS
命名空間我得到一個錯誤「對象引用的對象「錯誤。爲了能夠讀取xml,我需要添加什麼?