Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace JuService
- {
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- static void Main()
- {
- ServiceBase[] ServicesToRun;
- ServicesToRun = new ServiceBase[]
- {
- new JuService()
- };
- ServiceBase.Run(ServicesToRun);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment