Skip to content

Instantly share code, notes, and snippets.

@syron
Created May 15, 2016 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save syron/8a7d919bfd09bc2b36e4e86b20e0843e to your computer and use it in GitHub Desktop.
Save syron/8a7d919bfd09bc2b36e4e86b20e0843e to your computer and use it in GitHub Desktop.
static void Main()
{
System.ServiceProcess.ServiceBase[] ServicesToRun;
ServicesToRun = new System.ServiceProcess.ServiceBase[] { new Service1() };
System.ServiceProcess.ServiceBase.Run(ServicesToRun);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment