views:

11

answers:

0

Is it possible to add multiple services to the ServiceBase array and are they started in different threads? This is my current code:

var servicesToRun = new ServiceBase[]
                        {
                            new DenormalizeSessionsService()
                        };
ServiceBase.Run(servicesToRun);

Now I want to add another service beside the DenormalizeSessionService.