How to make my running C# application be able to receive commands while it is running?
Posted
by CSharpBeginner
on Stack Overflow
See other posts from Stack Overflow
or by CSharpBeginner
Published on 2010-06-02T22:13:13Z
Indexed on
2010/06/02
23:04 UTC
Read the original article
Hit count: 138
How can I make my already running C# Windows Form Application be able to receive commands from the command line while it is already running?
For example: if my application is playing a video now then I want to be able to type on the command line "MyApp /stop" so that while the application is still running it stops the playing the video without exiting from current session.
© Stack Overflow or respective owner