using System; using System.Collections.Generic; using System.Linq; using System.ServiceProcess; using System.Text; using System.Windows.Forms; namespace Stone.WinService { static class Program { /// /// 应用程序的主入口点。 /// static void Main() { #if DEBUG Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new frmTest()); #else ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new Service1() }; ServiceBase.Run(ServicesToRun); #endif } } }