Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
2k views

Realtime Console Output Redirection using Process

I am using VBOXMANAGE to "export" a guest machine. VBOXManage is a Console application that can control the guest machine's behavior from the host. Since the export command is a long process, it ...
2
votes
2answers
1k views

Redirecting Console Output to winforms ListBox

I have built a library that dumps most of its debug text using Console.WriteLine(); I am now I am the process of using the library in a Windows Forms Application, and still need access to the ...
1
vote
1answer
145 views

Can the console output of a Windows console application be captured fully (incl. advanced manipulations)?

It is a trivial matter of redirecting a console program's standard input/output, but what about if the program uses advanced console functions? Like outputting colored text, throwing the cursor around ...
1
vote
7answers
537 views

c# Unit Test for a method which is calling Console.ReadLine()

Hi everyone first post here. I want to create a unit test for a member function of a class called ScoreBoard which is storing the TOP5 players in a simple game. The problem is that the method i am ...