Is it possible to somehow notify a running process from the "outside"?
I have a C# program that theoretical runs forever. And I would like to notify it to trigger some action manually. It would be best, if this solution is possible on Windows and Linux (mono).
EDIT:
- The solution should work without a user interface
- My program is, as for now, a part of web service. On initializing, a new Theread is created, which uses the
Task
class to stay alive