using System; using System.Collections.Generic; using System.Windows.Forms; namespace rycUpdate { static class Program { /// /// 应用程序的主入口点。 /// [STAThread] static void Main(string[] args) { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); if (args.Length == 0) Application.Run(new frmmain()); else Application.Run(new frmmain(args)); } } }