I have the following Xml :
<Root>
<Username>
<string>Fred</string>
<string>John</string>
</Username>
</Root>
What I need is a Xml formatted like this:
<Root>
<Username>Fred</Username>
<Username>John</Username>
</Root>
Is there a way to achieved that?
Linq-to-XML: