Last active
January 3, 2016 17:40
-
-
Save BenjaminAbt/4ecf132003a31fec57f8 to your computer and use it in GitHub Desktop.
CSharp XmlTutorial DEMO Xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | |
<MediaDatenbank> | |
<!-- Liste von Filmen --> | |
<Filme> | |
<Film Id="1" Jahr="1996"> | |
<Name>The Rock</Name> | |
<Land>USA</Land> | |
<FSK>16</FSK> | |
<Person IdRef="1" Typ="Hauptdarsteller" /> | |
<Person IdRef="2" Typ="Regisseur" /> | |
<Person IdRef="3" Typ="Nebendarsteller" /> | |
</Film> | |
</Filme> | |
<!-- Liste von Personen --> | |
<Personen> | |
<Person Id="1"> | |
<Name>Nicolas Cage</Name> | |
</Person> | |
<Person Id="2"> | |
<Name>Michael Bay</Name> | |
</Person> | |
<Person Id="3"> | |
<Name>Sean Connery</Name> | |
</Person> | |
</Personen> | |
</MediaDatenbank> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment