I have a very simple XML document
<content>
<reference>
<title>www</title>
<url>http://xxx</url>
</reference>
<reference>
<title>yyy</title>
<url>http://zzz</url>
</reference>
</content>
I'm trying to use LINQ to query each reference in turn to extract text in both title and url. There's nothing conditional in any of this, e.g., no where, and it seems simple, but I'm having terminal brain fade trying to get this done.