我試圖提取<str>
標籤從內容:XML內容提取C#
<lst name="Stack">
<lst name="Overflow">
<arr name="content">
<str>Help</str>
</arr>
</lst>
</lst>
的代碼。我正在使用C#是:
txtResponse.Text += xDoc.Descendants("lst")
.Where(f => (string) f.Attribute("name") == "Overflow")
.Descendants("arr")
.Descendants("str")
.Select(b => b.Value);
但它返回到我
System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,System.String]
什麼是我的問題?
已經有您以前的問題的答案:http://stackoverflow.com/questions/18462349/parsing-xml- content-c-sharp – MarcinJuraszek
上一個問題是類似的,但有細微的差別 –