.NET Framework Class Library
XElement.LastAttribute Property
Gets the last attribute of this element.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Syntax
Visual Basic
Public ReadOnly Property LastAttribute As XAttribute Get
C#
public XAttribute LastAttribute { get; }
Visual C++
public: property XAttribute^ LastAttribute { XAttribute^ get (); }
F#
member LastAttribute : XAttribute
Property Value
Type: System.Xml.Linq.XAttributeAn XAttribute that contains the last attribute of this element.
Remarks
Attributes are stored in the element in the order that they were added to the element.
Examples
The following example creates an XML tree with three attributes. It then writes the last attribute as output.
C#
XElement xmlTree = new XElement("Root", new XAttribute("Att1", 1), new XAttribute("Att2", 2), new XAttribute("Att3", 3) ); Console.WriteLine(xmlTree.LastAttribute);
Visual Basic
Dim xmlTree As XElement = <Root Att1="1" Att2="2" Att3="3"/> Console.WriteLine(xmlTree.LastAttribute)
This example produces the following output:
Att3="3"
Version Information
.NET Framework
Supported in: 4, 3.5.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also