How to call method from running windows service

前端 未结 5 1462
面向向阳花
面向向阳花 2020-12-06 12:17

I have created and started windows service Service1 (with exe as MyService.exe) using c# 2005. . I have included a method GetMyRandomNumber() that returns a random double va

5条回答
  •  遥遥无期
    2020-12-06 13:01

    WCF will be an overkill for communication on the same computer. Pipes is a simpler and more effective solution.

提交回复
热议问题