The correct way to express a dictionary in XML is something like this:
<root> <item> <key>Name</key> <value>John</value> </item> <item> <key>City</key> <value>London</value> </item> </root>
In the past I used to create scripts that exported xml from relational data but didn't really understand the right way to build and structure them.
The correct way to express a dictionary in XML is something like this:
<root> <item> <key>Name</key> <value>John</value> </item> <item> <key>City</key> <value>London</value> </item> </root>
In the past I used to create scripts that exported xml from relational data but didn't really understand the right way to build and structure them.