I'm trying to deserialise some xml that contains multiple single xml elements in .Net C#, like so:
<Root>
<Status>OK</Status>
<Person>
<Name>Element 1</Name>
</Person>
<Person>
<Name>Element 2</Name>
</Person>
</Root>
The Person nodes are not in a <Persons></Persons>, therefore I cannot use the [XmlArray] attribute.
Does anyone know to do that, without having to use the XPath with XDocument.
Thanks