使用Linq to XML选择单个值

时间:2013-01-18 20:18:54

标签: linq-to-xml

我的大脑今天不工作。如何选择仅在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>

1 个答案:

答案 0 :(得分:1)

var doc = XDocument.Load("pathtoXml");
var value = doc.Descendants("IDValue").SingleOrDefault().Value;