コード例 #1
0
ファイル: SpecCommandLine.cs プロジェクト: rssvihla/OldIdeas
        static void Main(string[] args)
        {
            try
            {
                var client = new CommandLineClient(new ProdConsole(), new IoCConfig(), new AppDomainLoader());
                client.Run(args);
            }
            catch (Exception ex)
            {

                Console.WriteLine(ex);
            }
        }
コード例 #2
0
 public int Run(string[] args)
 {
     var client= new CommandLineClient(new ProdConsole(), new IoCConfig(), new AppDomainLoader());
        return client.Run(args);
 }