i have got my application to read in some values from my xml document however i am unsure of how I'm going to store them as i have in total 6 pieces of information for each element in the file at the moment.
XML Example
<?xml version="1.0" encoding="utf-8"?>
<App>
<Name>First Application </Name>
<FileName>1.exe</FileName>
<FilePath>C:\</FilePath>
<Third_Parameter>etc</Third_Parameter>
<Forth_Parameter>etc</Forth_Parameter>
<Name>Application 2</Name>
<FilePath></FilePath>
<Third_Parameter>etc</Third_Parameter>
<Forth_Parameter>etc</Forth_Parameter>
</App>
I was thinking of a array with an unique ID as i already have one for each app anyway but i have no idea on how to dynamically create an array with the name of another variable. I looked at using a dictionary however i have more than two variables and no idea how to make it work with that.
Basically i need a way of storing all this information for a potentially infinite amount of applications without using a database.