Hi, how can I get a ArrayList or List of key and value of the Name, ID and description from the xml file below?
I do not really understand how the handling of elimenter done in VB.NET based on logic in javascript.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Document>
 <TrackList>
  <plist>
   <array>
    <dict>
     <key>Name</key><string>Michael Jackson</string>
     <key>ID</key><integer>22</integer>
     <key>description</key><string>Some text</string>
    </dict>
    <dict>
     <key>Name</key><string>Pink Floyd</string>
     <key>ID</key><integer>52</integer>
     <key>description</key><string>Some text</string>
    </dict>
   <array>
  </plist>
 </TrackList>
</Document>