ZeroInstall.Program.RunGui C# (CSharp) Method

RunGui() private static method

Runs the application in GUI mode.
private static RunGui ( string args ) : ExitCode
args string The command-line arguments passed to the application.
return ExitCode
        private static ExitCode RunGui(string[] args)
        {
            using (var handler = new GuiTaskHandler())
                return Run(args, handler, gui: true);
        }