问:
如何通过LINQ获取根元素的属性值(我的xml文件中的第一个元素)。
XDocument xmlDoc = XDocument.Load(targetFileName);
<timetable ascttversion="2010" options="idprefix:realID">
我想阅读options
值。
答案 0 :(得分:6)
这样的事情:
XDocument xdoc = XDocument.Load(targetFileName);
var attrib = xdoc.Root.Attribute("options").Value;
// attrib = "idprefix:realID"
答案 1 :(得分:1)
以下应该
xmlDoc.Root.Attribute("option").Value