Hi there

I am writing a simple Windows Service.

Basically I want to know, is it possible for a C# Windows App to call A METHOD in that service?

for example, my service may have a method which returns back a string like "hello"

When I have added that service in my Windows C# app, I cannot seem to find that method, even though I made it public so its accessible.

How can I call a method on a Windows Service I have made from within a C# Windows app?

Thanks!