这就是我想要做的:
- 控制台要求输入
- 控制台输出东西
- 输出即将到来时,输入仍然可以随时输入
所以它基本上做了以下事情:
string message;
Console.WriteLine("Please enter your message");
message = Console.ReadLine();
Console.WriteLine("While you're writing that, this is shown,");
Console.WriteLine("And you can continue to write as things are being outputted");
我怎样才能实现这个功能?我需要运行多个线程吗?如何将输入从一个控制台窗口发送到另一个?