I have an .exe file which was written in C. It is a command line application. I want give command line and also get correspond output in this application through a C# application.
How do I invoke the command and get the output from C#?
|
I have an How do I invoke the command and get the output from C#?
| ||||
feedback
|
|
You could use the Process.Start method:
| ||||
|
feedback
|
|
You need to use the You supply it with the name of your process and any command line arguments and it will run the executable. You can capture any output which you can then process in your C# application. | |||
|
feedback
|