Hi
I have an XML doc:
<statuses>
<status>
</status>
<status>
</status>
</statuses>
I have parsed this into an XDocument, and want to use LINQ to select the elements into a strongly typed collection of Status classes (all status elements are simple types, either string or int).
Any ideas how I can do this?
Thanks!