XmlNode.SelectSingleNode returns element outside current?

后端 未结 4 1662
梦谈多话
梦谈多话 2021-02-18 17:01

my problem is like this. Let\'s say i have xml like this


  
    Value1
    

        
4条回答
  •  深忆病人
    2021-02-18 17:36

    the problem here is the XPath expression you are using, try it without the '//'. Like that:

    node.SelectSingleNode( "element3" );

    Read more here .

提交回复
热议问题