StableVersion4.3/RFIDAutomaticInductionTime/Program.cs

21 lines
443 B
C#

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