Exemple #1
0
        //------------------------------------------------------------
        // Compiler.Compile
        //------------------------------------------------------------
        static public void Compile(params string[] args)
        {
            DebugUtil.CreateStopwatchs(2);
            DebugUtil.StartStopwatch(true, "Parse args");
            DebugUtil.StartStopwatch(1, true, "total");

            CommandLineCompiler compiler = new CommandLineCompiler();

            compiler.Compile(args);

            DebugUtil.DisplayAllStopwatchTimes();
        }