The following code snippet checks if a service is stopped, start it; otherwise stop it.
Let's say, you have a service named "MyServiceName". First you create a ServiceController object and then call its Start or Stop methods to start and stop a windows service.
ServiceController service = new ServiceController("MyServiceName");
if ((service.Status.Equals(ServiceControllerStatus.Stopped)) ||
(service.Status.Equals(ServiceControllerStatus.StopPending)))
service.Start();
else service.Stop();
ServiceController class also have Pause, Continue, and Refresh methods to pause, continue, and refresh a windows service.
Read more: C# Corner