CapRaffle.WinService.Program.Main C# (CSharp) Method

Main() public static method

The main entry point for the application.
public static Main ( ) : void
return void
        public static void Main()
        {
            ServiceBase[] ServicesToRun;
            ServicesToRun = new ServiceBase[]
            {
                new RafflingService()
            };
            ServiceBase.Run(ServicesToRun);
        }
Program