XElement.LastAttribute 属性

定义

获取此元素的最后一个属性。

public:
 property System::Xml::Linq::XAttribute ^ LastAttribute { System::Xml::Linq::XAttribute ^ get(); };
public System.Xml.Linq.XAttribute LastAttribute { get; }
public System.Xml.Linq.XAttribute? LastAttribute { get; }
member this.LastAttribute : System.Xml.Linq.XAttribute
Public ReadOnly Property LastAttribute As XAttribute

属性值

XAttribute

一个包含此元素最后一个属性的 XAttribute

示例

以下示例创建一个具有三个属性的 XML 树。 然后,它将最后一个属性作为输出写入。

XElement xmlTree = new XElement("Root",  
    new XAttribute("Att1", 1),  
    new XAttribute("Att2", 2),  
    new XAttribute("Att3", 3)  
);  
Console.WriteLine(xmlTree.LastAttribute);  
Dim xmlTree As XElement = <Root Att1="1" Att2="2" Att3="3"/>  
Console.WriteLine(xmlTree.LastAttribute)  

该示例产生下面的输出:

Att3="3"  

注解

属性以添加到元素的顺序存储在元素中。

适用于

另请参阅