我正在尝试使用c#在xml文件中获取属性(memo)的值,我也希望在文本框中显示值(美好的一天)。任何人都可以帮忙吗?
<tree>
<Product comment=" C# " memo="Wonderful day" />
</tree>
答案 0 :(得分:2)
查看XPath
答案 1 :(得分:1)
var xml=@"<tree>
<Product comment="" C# "" memo=""Wonderful day"" />
</tree>";
var doc = XDocument.Parse(xml);
var memo = doc.Document.Descendants("Product").Single().Attribute("memo").Value;
输出:Wonderful day