示例#1
0
文件: melt.cs 项目: roni8686/wix3
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        /// <param name="args">Arguments to decompiler.</param>
        /// <returns>0 if sucessful, otherwise 1.</returns>
        public static int Main(string[] args)
        {
            AppCommon.PrepareConsoleForLocalization();
            Melt melt = new Melt();

            return(melt.Run(args));
        }
示例#2
0
文件: melt.cs 项目: DavidFlamme/wix3
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 /// <param name="args">Arguments to decompiler.</param>
 /// <returns>0 if sucessful, otherwise 1.</returns>
 public static int Main(string[] args)
 {
     AppCommon.PrepareConsoleForLocalization();
     Melt melt = new Melt();
     return melt.Run(args);
 }
示例#3
0
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        /// <param name="args">Arguments to decompiler.</param>
        /// <returns>0 if sucessful, otherwise 1.</returns>
        public static int Main(string[] args)
        {
            Melt melt = new Melt();

            return(melt.Run(args));
        }