This is a newbie question but I cant seem to find to do the following:
XML is this -
<sets><set><title>hello1</title><images><image>1667</image></images></set></sets>
foreach (XElement setNode in collectionXML.DescendantNodes())
{
myString = setNode.Descendants("title").First()....
}
From First(), how do i get the inner value of the title node? (in this case it would be "hello1")
Calling ToString() on the element yields "hello1", which obviously isn't quite what I want