我正在将字符串加载到包含以下结构的XML文档中:
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ItemGroup> <Compile Include="clsWorker.cs" /> </ItemGroup> </Project>
然后我将所有内容加载到XmlDocument:
XmlDocument
XmlDocument xmldoc = new XmlDocument(); xmldoc.LoadXml(Xml);
然后发生以下问题:
XmlNode Node = xmldoc.SelectSingleNode("//Compile"); // returns null
当我xmlns从根元素(Project)删除属性时,它可以正常工作。
xmlns
Project
我如何SelectSingleNode返回相关元素?
SelectSingleNode
您应该在对SelectSingleNode()的调用中使用XmlNamespaceManager:
XmlNamespaceManager ns = new XmlNamespaceManager(xmldoc.NameTable); ns.AddNamespace("msbld", "http://schemas.microsoft.com/developer/msbuild/2003"); XmlNode node = xmldoc.SelectSingleNode("//msbld:Compile", ns);