コード例 #1
0
        /// <summary>
        /// The entry point of the program, where the program control starts and ends.
        /// </summary>
        /// <param name="args">The command-line arguments.</param>
        public static void Main(string[] args)
        {
            var p = new DxProcessor();

            p.AssemblyFile = args[0];
            p.Execute();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: hach-que/Dx
 /// <summary>
 /// The entry point of the program, where the program control starts and ends.
 /// </summary>
 /// <param name="args">The command-line arguments.</param>
 public static void Main(string[] args)
 {
     var p = new DxProcessor();
     p.AssemblyFile = args[0];
     p.Execute();
 }