I am starting WCF services from a Windows service. But at the same time I need to start another Windows service from the same windows service in separate instance.
Below is the code which I am using for starting a single WCF service.
Program.cs
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new WCFService()
};
ServiceBase.Run(ServicesToRun);
}
I need help to start another service from this service in separate instance, please help me.
Thanks in advance.