2013-01-18 112 views
1

我的大腦今天不工作。我如何才能選擇「IDValue」,它只出現在像下面這樣的xml文件中?使用Linq to XML選擇單個值

<?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
var doc = XDocument.Load("pathtoXml"); 
var value = doc.Descendants("IDValue").SingleOrDefault().Value;