Using LINQ to XML, how can I project the following XML data into a List<string> with the values "Test1", "Test2" and "Test3".
<objectlist>
<object code="Test1" />
<object code="Test2" />
<object code="Test3" />
</objectlist>
I have the XML available in a string:
XDocument xlist = XDocument.Parse(xmlData);
Thanks