XmlNode.LastChild Property
.NET Framework 1.1
Gets the last child of the node.
[Visual Basic] Public Overridable ReadOnly Property LastChild As XmlNode [C#] public virtual XmlNode LastChild {get;} [C++] public: __property virtual XmlNode* get_LastChild(); [JScript] public function get LastChild() : XmlNode;
Property Value
The last child of the node. If there is no such node, a null reference (Nothing in Visual Basic) is returned.
Example
[Visual Basic, C#, C++] The following example displays the price element.
[Visual Basic] Option Explicit Option Strict Imports System Imports System.IO Imports System.Xml Public Class Sample Public Shared Sub Main() Dim doc As New XmlDocument() doc.LoadXml("<book ISBN='1-861001-57-5'>" & _ "<title>Pride And Prejudice</title>" & _ "<price>19.95</price>" & _ "</book>") Dim root As XmlNode = doc.FirstChild Console.WriteLine("Display the price element...") Console.WriteLine(root.LastChild.OuterXml) End Sub 'Main End Class 'Sample [C#] using System; using System.IO; using System.Xml; public class Sample { public static void Main() { XmlDocument doc = new XmlDocument(); doc.LoadXml("<book ISBN='1-861001-57-5'>" + "<title>Pride And Prejudice</title>" + "<price>19.95</price>" + "</book>"); XmlNode root = doc.FirstChild; Console.WriteLine("Display the price element..."); Console.WriteLine(root.LastChild.OuterXml); } } [C++] #using <mscorlib.dll> #using <System.Xml.dll> using namespace System; using namespace System::IO; using namespace System::Xml; int main() { XmlDocument* doc = new XmlDocument(); doc->LoadXml(S"<book ISBN='1-861001-57-5'>" S"<title>Pride And Prejudice</title>" S"<price>19.95</price>" S"</book>"); XmlNode* root = doc->FirstChild; Console::WriteLine(S"Display the price element..."); Console::WriteLine(root->LastChild->OuterXml); }
[JScript] No example is available for JScript. To view a Visual Basic, C#, or C++ example, click the Language Filter button
in the upper-left corner of the page.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework