XML C#

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy
Publisher: Sybex;
ISBN: 0782129110
*/
/*
  Example20_3.cs illustrates the XslTransform class
*/
using System;
using System.Xml;
using System.Xml.Xsl;
using System.IO;
public class Example20_3 
{
    public static void Main() 
    {
        // use an XmlTextReader to open an XML document
        XmlTextReader xtr = new XmlTextReader("Cust3.xml");
        xtr.WhitespaceHandling = WhitespaceHandling.None;
        // load the file into an XmlDocuent
        XmlDocument xd = new XmlDocument();
        xd.Load(xtr);
        
        // load an XSLT file
        XslTransform xslt = new XslTransform();
        xslt.Load("Cust.xsl");
        // perform the transformation in memory
        MemoryStream stm = new MemoryStream();
        xslt.Transform(xd, null, stm);
        // and dump the results
        stm.Position = 1;
        StreamReader sr = new StreamReader(stm);
        Console.Write(sr.ReadToEnd());
        // close the reader
        xtr.Close();
    }
}
//File:Cust3.xml
/*



    
        ALFKI
        Alfreds Futterkiste
        Maria Anders
        Sales Representative
        
Obere Str. 57

        Berlin
        12209
        Germany
        030-0074321
        030-0076545
    

    
        BONAP
        A Company
        Laurence Lebihan
        Owner
        
12, rue des Bouchers

        Marseille
        13008
        France
        91.24.45.40
        91.24.45.41
    


*/
//File:Cust.xsl
/*



    
        

Customer


         


         


         


    


*/