我正在尝试从以下位置提取<str>
标签的内容:
<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]
我的问题是什么?