Hi there, I'm kind of lost about writing my information to an XML file.
I want to save both literal strings and images.
I have no idea how to write the syntax of the XML file. When I create an XML file in Visual Studio 2008 all the file has is this:
<?xml version="1.0" encoding="utf-8" ?>
So I have no clue on how to add things.
**Edit: I know what XML is, I just don't know how I can go about setting thing. I know I can search by nodes etc.
Would I do something like:
<Person>
<Name>
Sergio
</Name>
<LastName>
Castedo
</LastName>
</Person>
Meaning, can I write my trees anyone way I want or is there a strict way?