SetStartupCommandLine() 개인적인 메소드

Allows the start of the program to pass in command line arguments
private SetStartupCommandLine ( CommandLineParser commandLine ) : void
commandLine CommandLineParser
리턴 void
예제 #1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            //UI form we are going to show
            var form = new FormSiteExportImport();

            //See if we have command line arguments to run
            var commandLine = new CommandLineParser();
            if(CommandLineParser.HasUseableCommandLine(commandLine))
            {
                form.SetStartupCommandLine(commandLine);
            }

            Application.Run(form);
        }
예제 #2
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            //UI form we are going to show
            var form = new FormSiteExportImport();

            //See if we have command line arguments to run
            var commandLine = new CommandLineParser();

            if (CommandLineParser.HasUseableCommandLine(commandLine))
            {
                form.SetStartupCommandLine(commandLine);
            }

            Application.Run(form);
        }