tijian_jichuang/Code/SOH.FenZhen.BrokerServer/Program.cs
2025-02-20 11:54:48 +08:00

25 lines
526 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
namespace SOH.FenZhen.BrokerServer
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new BrokerService()
};
ServiceBase.Run(ServicesToRun);
}
}
}