Person, is as follows. I have an application that works on the command line. This application receives parameters by command line, eg: program.exe [parameters] I want to make an interface where I run this application by passing the commands and capture what the application is displaying on the command line, and show this in a txtLabel. The part of passing the commands and running the application I know how to do. What I can not do is capture what's going out on the command line and display it on a Label.
I was thinking of making the application in cmd save the output in .txt and with the interface in C #, read this .txt and display on screen. But I do not think I'm the ideal.
In my case I'm running the youtube-dl and I want to capture the output of it constantly and show it in a label.