123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ServiceProcess;
- using System.Text;
- namespace US.Browser.Service
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- static void Main()
- {
- ServiceBase[] ServicesToRun;
- ServicesToRun = new ServiceBase[] { new USservice() };
- ServiceBase.Run(ServicesToRun);
- }
- }
- }
|