Is it possible to run a console application and get its outputted contents back as a string in C#?
I want to be able to use parameters when running the console app:
c:\files\app.exe -a 1 -b 2 -c 3
|
1
|
|
|
|
|
|
You want to use the Process class's Start method and redirect the output to a StreamReader. Here's an example. |
||||||
|
|
|
This isn't the clearest thing I've read today, but I can only assume you're spawning a process (with If so,
|
||||
|