Esempio n. 1
0
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        /// <param name="args">Arguments to pyro.</param>
        /// <returns>0 if sucessful, otherwise 1.</returns>
        public static int Main(string[] args)
        {
            AppCommon.PrepareConsoleForLocalization();
            Pyro pyro = new Pyro();

            return(pyro.Run(args));
        }
Esempio n. 2
0
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        /// <param name="args">Arguments to pyro.</param>
        /// <returns>0 if sucessful, otherwise 1.</returns>
        public static int Main(string[] args)
        {
            Pyro pyro = new Pyro();

            return(pyro.Run(args));
        }
Esempio n. 3
0
File: pyro.cs Progetto: zooba/wix3
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 /// <param name="args">Arguments to pyro.</param>
 /// <returns>0 if sucessful, otherwise 1.</returns>
 public static int Main(string[] args)
 {
     AppCommon.PrepareConsoleForLocalization();
     Pyro pyro = new Pyro();
     return pyro.Run(args);
 }