I have a custom XML (Vendor specific) which I need to serialize and deserialize. The format of the XML is as follows
<RootElement>
<childelement>
<id/>
<description/>
</childelement>
<childelement>
<id/>
<description/>
</childelement>
</RootElement>
- Root element is also and Object which contains a list of child elements
- Child element is defined as an object
Note that I dont want the childelements to be encapsulated by another tag . Sorry this is not my XML design :)