I’m curious if there is standard or guideline for determining what types of things should be attributes vs elements within the xml file.
I’m also curious about creating xmlarray and xmlarrayitem lists using XMLSerializer. For example if I have the following:
<SomeBaseTag>
<Item1 Attr11=”one” Attr12=”two” />
<Item1 Attr11=”one” Attr12=”two” />
<Item1 Attr11=”one” Attr12=”two” />
<Item2 Attr21=”one” Attr22=”two” />
<Item2 Attr21=”one” Attr22=”two” />
<Item2 Attr21=”one” Attr22=”two” />
</SomeBaseTag>
Should I change it to:
<SomeBaseTag>
<Item1s>
<Item1 Attr11=”one” Attr12=”two” />
<Item1 Attr11=”one” Attr12=”two” />
<Item1 Attr11=”one” Attr12=”two” />
</Item1s>
<Item2s>
<Item2 Attr21=”one” Attr22=”two” />
<Item2 Attr21=”one” Attr22=”two” />
<Item2 Attr21=”one” Attr22=”two” />
</Item2s>
</SomeBaseTag>