Launch() приватный Метод

private Launch ( ) : void
Результат void
Пример #1
0
        /// <summary>
        /// Entry point
        /// </summary>
        public static void Main(String[] args)
        {
            Application app = null;
            try
            {
                Console.Write("Setty 1.0");
                app = new Application(args);
                app.Launch();
            }
            catch (SettingsFolderNotFound e)
            {
                Console.WriteLine();
                Console.WriteLine("ERROR: " + e.Message);
            }
            catch (Exception e)
            {
                Console.WriteLine();
                Console.WriteLine("ERROR: " + e.Message);
            }

            if (app != null && !app.Silent)
            {
                Console.WriteLine();
                Console.WriteLine("Press any key to exit...");
                Console.ReadKey();
            }
        }