示例#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));
        }
示例#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));
        }
示例#3
0
文件: pyro.cs 项目: 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);
 }