Csharp/C Sharp/XML LINQ/InDocumentOrder

Материал из .Net Framework эксперт
Версия от 14:33, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Calling the Only InDocumentOrder Prototype

<source lang="csharp"> using System; using System.Linq; using System.Collections; using System.Collections.Generic; using System.Xml; using System.Xml.Linq; public class MainClass {

   public static void Main() {
       XDocument xDocument = new XDocument(
        new XElement("Books",
          new XElement("Book",
           new XAttribute("type", "Author"),
          new XComment("This is a new author."),
           new XElement("FirstName", "A"),
          new XElement("LastName", "B")),
          new XElement("Book",
           new XAttribute("type", "Author"),
          new XElement("FirstName", "C"),
          new XElement("LastName", "D"))));
       IEnumerable<XNode> nodes = xDocument.Element("Books").Elements("Book").Nodes().Reverse();
       foreach (XNode node in nodes) {
           Console.WriteLine("Source node: {0}", node);
       }
       foreach (XNode node in nodes.InDocumentOrder()) {
           Console.WriteLine("Ordered node: {0}", node);
       }
   }

}

</source>