I have an xml file that returns a set of elements that are unique by a attribute value. This presents a problem, as I can not select a node by its name:
<
Use XElement like this:
XElement
from rt in results.descendants("") where rt.attribute(attribute name).value == "specified value" select rt
Sorry for typing from cell phone