XmlNode.PreviousSibling Property
.NET Framework (current version)
Gets the node immediately preceding this node.
Assembly: System.Xml (in System.Xml.dll)
Property Value
Type: System.Xml.XmlNodeThe preceding XmlNode. If there is no preceding node, null is returned.
The following example displays all the books in the XML document.
using System; using System.Xml; public class Sample { public static void Main() { XmlDocument doc = new XmlDocument(); doc.Load("books.xml"); XmlNode lastNode = doc.DocumentElement.LastChild; Console.WriteLine("Last book..."); Console.WriteLine(lastNode.OuterXml); XmlNode prevNode = lastNode.PreviousSibling; Console.WriteLine("\r\nPrevious book..."); Console.WriteLine(prevNode.OuterXml); } }
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: