I developed c# a GUI form with only "Start" and "Stop" something like:
private void btnStart_Click(object sender, EventArgs e)
{
//Some code here
}
private void btnStop_Click(object sender, EventArgs e)
{
//Some code here
}
I need to run this app as service.
How can I run my GUI app as a service? plz help