12345678910111213141516171819202122 |
- using System.ServiceProcess;
- namespace TransdataService
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- static void Main()
- {
- ServiceBase[] ServicesToRun;
- ServicesToRun = new ServiceBase[]
- {
- new MainService()
- };
- ServiceBase.Run(ServicesToRun);
- }
- }
- }
|