I have a XmlDocument which is not properly formed
<library>
  <dept>
    <books></books>
    <language></language>
  </dept>
  <dept>
    <lecturer></lecturer>
  </dept>
</library>
I want to do a XmlDocument.SelectSingleNode for 'lecturer' tag. 
开发者_如何学JAVAWhen I select ChildNodes of <library> tag, I get only <books> and <language> but not <lecturer>. 
How do I get XmlNode object of  tag?
The XML is well formed XML. It would not load into a XmlDocument otherwise.
The only ChildNodes of library are dept nodes.
To get lecturer, you can do the following:
XmlDocument.SelectSingleNode("library/dept/lecturer");
To parse csproj file, use GetElementsByTagName(). I dont know why SelectSingleNode() is not working!
Thank you Sid
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论