i have a small project for class where i need to read information in my XML file and put it in a hashtable. the problem is, I've never done this before and don't have a clue where to start. does anyone have a suggestion on how i can achieve this problem?
this is my sample XML file:
<books>
<items type="horror">
<page>100</page>
<author>bob</author>
<cost>50</cost>
</items>
<items type="comedy">
<page>100</page>
<author>bill</author>
<cost>50</cost>
</items>
<items type="biography">
<page>100</page>
<author>bob</author>
<cost>50</cost>
</items>
</books>