Skip to content

Instantly share code, notes, and snippets.

@swkwon
Created December 23, 2013 07:41
Show Gist options
  • Save swkwon/8093071 to your computer and use it in GitHub Desktop.
Save swkwon/8093071 to your computer and use it in GitHub Desktop.
windows service
using System.ServiceProcess;
namespace WindowsService2
{
public partial class Service1 : ServiceBase
{
public Service1()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment