Hey,
I have tried Google, but no avail.
I have an XML file, say
<Items>
<item>
<id>1</id>
<name>test</name>
</item>
<item>
<id>2</id>
<name>othertest</name>
</item>
</Items>
I have a function Add(int id, string name). How would I read through every <item>, get the id and name, and call the add function.
Thanks