I have created a C# service using the VS2005 template. It works fine however the description of the service is blank in the Windows Services control applet.
Create a ServiceInstaller and set the description
private System.ServiceProcess.ServiceInstaller serviceInstaller = new System.ServiceProcess.ServiceInstaller(); this.serviceInstaller.Description = "Handles Service Stuff";