XContainer.LastNode Property (System.Xml.Linq)

Switch View :
ScriptFree
.NET Framework Class Library
XContainer.LastNode Property

Get the last child node of this node.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)
Syntax

Visual Basic
Public ReadOnly Property LastNode As XNode
	Get
C#
public XNode LastNode { get; }
Visual C++
public:
property XNode^ LastNode {
	XNode^ get ();
}
F#
member LastNode : XNode

Property Value

Type: System.Xml.Linq.XNode
An XNode containing the last child node of the XContainer.
Examples

The following example creates an element that contains child elements. It then gets the last child node of the parent element.

C#
XElement xmlTree = new XElement("Root",
    new XElement("Child1", 1),
    new XElement("Child2", 2),
    new XElement("Child3", 3),
    new XElement("Child4", 4),
    new XElement("Child5", 5)
);
XNode lastNode = xmlTree.LastNode;
Console.WriteLine(lastNode);
Visual Basic
Dim xmlTree As XElement = _ 
        <Root>
            <Child1>1</Child1>
            <Child2>2</Child2>
            <Child3>3</Child3>
            <Child4>4</Child4>
            <Child5>5</Child5>
        </Root>

Dim lastNode As XNode = xmlTree.LastNode
Console.WriteLine(lastNode)

This example produces the following output:

xmlLang
<Child5>5</Child5>
Version Information

.NET Framework

Supported in: 4, 3.5

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

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

Reference

Other Resources