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>
If you are using VB then you can use some built-in constructs to make the query easier. I built a small app that returns a anonymous class. Now the assumption is that the structure remains the same, so dict will always have six elements.
An alternative would be to get the child elements for the dict element. Then you can cursor through them to build the key/value pairs.
HTH