Open
Description
System.ServiceProcess.ServiceBase.Run states that:
After you call Run(ServiceBase), the Service Control Manager issues a Start command, which results in a call to the OnStart method in the service. The service is not started until the Start command is executed.
It would be important to make clear that the SCM will not consider the service started until OnStart is invoked by the ServiceBase derived class.