我的大脑今天不工作。如何选择仅在xml文件中出现一次的“IDValue”?
<?xml version="1.0" encoding="UTF-8"?>
<response>
<result>
<Property>
<PropertyID>
<Identification>
<IDValue>8361</IDValue>
<OrganizationName>Lynd Company</OrganizationName>
</Identification>
</PropertyID>
</Property>
</result>
</response>
答案 0 :(得分:1)
var doc = XDocument.Load("pathtoXml");
var value = doc.Descendants("IDValue").SingleOrDefault().Value;