Facilitate the merge
[mono.git] / web / web / transform.cs
1 using System;
2 using System.Xml;
3 using System.Xml.Xsl;
4
5 namespace Transform
6 {
7         class Transform
8         {
9                 public static void Main (string [] rgstrArgs)
10                 {
11                         XmlDocument xml = new XmlDocument ();
12                         xml.Load (rgstrArgs [0]);
13
14                         XslTransform xsl = new XslTransform ();
15                         xsl.Load (rgstrArgs [1]);
16
17                         xsl.Transform (xml, null, Console.Out);
18                 }
19         }
20 }