C#, Windows Services: ServiceBase.Run with several services of the same type
Posted
by Austin Salonen
on Stack Overflow
See other posts from Stack Overflow
or by Austin Salonen
Published on 2010-04-02T16:50:21Z
Indexed on
2010/04/02
16:53 UTC
Read the original article
Hit count: 239
c#
|windows-services
I'm trying to run several similar services via ServiceBase.Run(ServiceBase[] )
but it's only running the first one. MSDN doesn't explicitly deny this; does this excerpt mean that they all must be different types? (the bold is by me, not MSDN)
Call this overload in the main() function of the service executable to load an array of associated services.
© Stack Overflow or respective owner