how can i write (and read) to a XML file on this format:
<color id="red">
</color>
If i use:
DataWrite->WriteElementString("color","red");
will appear like: <color>red</color>
and if i use:
DataWrite->WriteStartElement("color",nullptr,"red");
will appear like: <color xmlns:color="red">
thanks!!