Skip to content

Instantly share code, notes, and snippets.

@BenjaminAbt
Last active January 3, 2016 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenjaminAbt/4ecf132003a31fec57f8 to your computer and use it in GitHub Desktop.
Save BenjaminAbt/4ecf132003a31fec57f8 to your computer and use it in GitHub Desktop.
CSharp XmlTutorial DEMO Xml
<?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