我将此XML文档称为xDoc:
<Root>
<File Name="Date">
<Line> more stuff </Line>
</File>
</Root>
我只想要“名称”属性中的“日期”文本。 它给了我这个错误:System.NullReferenceException:对象引用未设置为对象的实例。 怎么了。我的xDoc不为null。 我为此使用的代码是:
string fileName = xDoc.Root.Attribute("Name").ToString();