I have a command line being redirected to a text file. I would like to keep the prompt window up with the information being scrolled so that the user knows it is still working.
How would I have it redirected as well as keeping the prompt open with the normal output being displayed?
Thanks.
Here is the snippet of my current code.
http://www.pastie.org/1005366
Loading
Jaish MathewsPosted Jun 21, 2010, 7:36 AM
You need to use below lines of commands.
//Print any thing to prompt window
Console.WriteLine(result);
//Make the prompt window open and visible
Console.ReadKey();