You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
854 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceProcess;
using System.Text;
namespace CommService
{
/*
*Program
*
*2010-10-30
*
*/
static class Program //程序管理类
{
/*
*Main
*
*2010-10-30
*void
*void
*
*/
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new NYJLCommService()
};
Common.platForm.Start();
//ServiceBase.Run(ServicesToRun);
}
}
}