Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get list of all parent nodes for particular child using XmlDocument. But i dont want to use the LINQ. My input is :

<parent1>
  <parent2>
    <parent3>
      <child1>
          Child Content.
      </child1>
    </parent3>
  </parent2>
</parent1>

now i want take all the parent nodes of an child1. Can anyone help me..

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.