3
我想獲得值<getthis>
,但似乎無法得到只是字符串值。我認爲這很簡單,但我似乎無法得到它。我試圖使用LINQC#/ LINQ:如何查詢此XML結構
XML
<?xml version="1.0" encoding="utf-8"?>
<root>
<item>
<name></name>
<title></title>
</item>
<info>
<getthis>value here</getthis>
<something>another value</something>
</info>
</upload>
做到這一點我用
var link = from links in doc.Descendants("getthis")
select links;
,但我只想要值。我該怎麼做?