I have the following XML structure for a card game. I want to load the card titels and descriptions into two arrays that I can use to randomize the cards.
<Cards>
<CardTitles>
<Title>Some Title</Title>
.
.
.
.
.
</CardTitles>
<CardDesc>
<Desc>Some description</Desc>
</CardDesc>
</Cards>
But no matter what I do or what code I write I'm unable to get the actual text from the proper tag. The closest I got was following this example :https://msdn.microsoft.com/en-us/library/system.xml.xmlreader.readsubtree(v=vs.110).aspx
I know I'm not supposed to ask for complete solutions but I'm just stumped. Any help in getting this matter cleared up to me will be great.