using System; using System.Collections.Generic; using System.IO; using System.Xml; using Xex = System.Xml.Xexpression; public class Test { public static void Main(params string[] args) { Xex.TraceDepth = 10; Xex.Domain domain = new Xex.Domain ("test", null); Xex xex = new Xex (domain, "xex.xml"); if (args.Length >= 2 && args[0] == "-d") Xex.TraceDepth = int.Parse (args[1]); Console.WriteLine (xex); Console.WriteLine (xex.Eval (domain)); } }