using System; using System.Xml.Xsl; public class XSL1{ public static void Main(string[] arg){ XslCompiledTransform t=new XslCompiledTransform(); t.Load("inimesed1.xsl"); t.Transform("inimesed.xml", "inimesed1.txt"); } }