Beispiel #1
0
 static void Main(string[] args)
 {
     var exec = new CNako2Executor();
     // 実行時オプションを設定
     if (!exec.SetOptions(args))
     {
         exec.ShowHelp();
         return;
     }
     // cnakoを実行
     exec.Run();
 }
Beispiel #2
0
        static void Main(string[] args)
        {
            var exec = new CNako2Executor();

            // 実行時オプションを設定
            if (!exec.SetOptions(args))
            {
                exec.ShowHelp();
                return;
            }
            // cnakoを実行
            exec.Run();
        }