Guest User

Untitled

a guest
Aug 14th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. namespace JuService
  2. {
  3. static class Program
  4. {
  5. /// <summary>
  6. /// The main entry point for the application.
  7. /// </summary>
  8. static void Main()
  9. {
  10. ServiceBase[] ServicesToRun;
  11. ServicesToRun = new ServiceBase[]
  12. {
  13. new JuService()
  14. };
  15. ServiceBase.Run(ServicesToRun);
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment