XML C#

//Order.xml
/*

  xmlns:cli="http://mycompany/ClientML">
    
        Sally
        Sergeyeva
    

    
    

*/
using System;
using System.Xml;
class MainClass {
    public static void Main() {
        XmlDocument doc = new XmlDocument();
        doc.Load("Order.xml");
        XmlNodeList matches = doc.GetElementsByTagName("*", "http://mycompany/OrderML");
        foreach (XmlNode node in matches) {
            Console.Write(node.Name + "\t");
            foreach (XmlAttribute attribute in node.Attributes) {
                Console.Write(attribute.Value + "  ");
            }
        }
    }
}