Team Manager in C# .NET 2.0
Posted: Wed Jun 28, 2006 10:17 pm
I am a coding hobbyist, and I am trying to write a simple application to manage a Blood Bowl team. I would like to store all of the team information in an XML file, and I find that I don't have enough knowledge of XML to format the elements and if I should use attributes.
I have so far:
Would anyone with XML experience please let me know if this is a good start, or if I should go back to XML 101 for dummies?
I have so far:
Code: Select all
<teams>
<squad>
<name>Amazon</name>
<reroll>50000</reroll>
<position>
<name>Linewomen</name>
<minqty>0</minqty>
<maxqty>16</maxqty>
<cost>50000</cost>
<ma>6</ma>
<st>3</st>
<ag>3</ag>
<av>7</av>
<skills>Dodge</skills>
<normal>g</normal>
<double>asp</double>
</position>
</squad>
</teams>