I have the following XML string but can't figure out a way to get the values out of an XDocument.
<root>
<Address>1st Street</Address>
<City>Denver<City>
</root>
I'm using:
XDocument mydoc = XDocument.Parse(xmlString);
From there, I can't get access "FirstName" and get the value. Any one know how to do this?