How to find particular node from duplicates

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • viralse21
    New Member
    • Jan 2015
    • 1

    How to find particular node from duplicates

    My xml has following nodes. How do I get value for nodes in second <Book> section.
    Code:
    <Book> 
      <Title>ANC</Title>
      <Author>SOMEONE</Author>
      <rate>5.77</rate> 
    </Book> 
    <Book> 
      <Title>DEF</Title> 
      <Author>SOMEONEELSE</Author> 
      <rate>8.97</rate> 
    </Book>
    Last edited by Frinavale; Jan 6 '15, 08:42 PM. Reason: Added code tags.
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    I'm not sure what you've tried so far to solve the problem or how much you know about processing XML in .NET so I'm simply going to suggest that you check out the System.XML Namespace documentation for information about how to work with XML in .NET and also for information about classes available for you to use to help you with your task.

    -Frinny

    Comment

    Working...