XmlNode.NextSibling 属性
定义
获取紧接在该节点之后的节点。Gets the node immediately following this node.
public:
virtual property System::Xml::XmlNode ^ NextSibling { System::Xml::XmlNode ^ get(); };
public virtual System.Xml.XmlNode NextSibling { get; }
public virtual System.Xml.XmlNode? NextSibling { get; }
member this.NextSibling : System.Xml.XmlNode
Public Overridable ReadOnly Property NextSibling As XmlNode
属性值
下一个 XmlNode
。The next XmlNode
. 如果没有下一个节点,则返回 null
。If there is no next node, null
is returned.
示例
下面的示例显示 XML 文档中的所有书籍。The following example displays all the books in the XML document.
#using <System.Xml.dll>
using namespace System;
using namespace System::Xml;
int main()
{
XmlDocument^ doc = gcnew XmlDocument;
doc->Load( "books.xml" );
XmlNode^ currNode = doc->DocumentElement->FirstChild;
Console::WriteLine( "First book..." );
Console::WriteLine( currNode->OuterXml );
XmlNode^ nextNode = currNode->NextSibling;
Console::WriteLine( "\r\nSecond book..." );
Console::WriteLine( nextNode->OuterXml );
}
using System;
using System.Xml;
public class Sample {
public static void Main() {
XmlDocument doc = new XmlDocument();
doc.Load("books.xml");
XmlNode currNode = doc.DocumentElement.FirstChild;
Console.WriteLine("First book...");
Console.WriteLine(currNode.OuterXml);
XmlNode nextNode = currNode.NextSibling;
Console.WriteLine("\r\nSecond book...");
Console.WriteLine(nextNode.OuterXml);
}
}
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.Load("books.xml")
Dim currNode as XmlNode = doc.DocumentElement.FirstChild
Console.WriteLine("First book...")
Console.WriteLine(currNode.OuterXml)
Dim nextNode as XmlNode = currNode.NextSibling
Console.WriteLine(ControlChars.LF + "Second book...")
Console.WriteLine(nextNode.OuterXml)
end sub
end class