Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
Store application settings in XML.
XML Configuration Files is easiest to learn by reading the example, changing it, and observing the result.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="theme" value="dark"/>
<add key="pageSize" value="20"/>
</appSettings>
<connectionStrings>
<add name="main" provider="postgres" host="localhost"/>
</connectionStrings>
</configuration>Practice the XML Configuration Files example in a small scratch file, then explain what changed and why.