1

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

1 回答 1

1
var doc = XDocument.Load("pathtoXml");
var value = doc.Descendants("IDValue").SingleOrDefault().Value;
于 2013-01-18T20:27:00.807 回答