【发布时间】:2011-03-26 22:46:12
【问题描述】:
我正在创建一个控制台应用程序,我希望有两个输出和一个输入。原因是一个输出总是可见的。
This is the first output
Text flows upwards just like a regular console application, however...
---------
This is a second output
This is placed at the bottom of the console // also input goes here.
我想这样称呼它
Console.Out.Writeline("This is the first output");
Console.Out.Writeline("Text flows upwards just like a regular console application, however...");
MyTextWriter.WriteLine("This is a second output");
MyTextWriter.WriteLine("This is placed at the bottom of the console");
但是我将如何将控制台分成两部分?有可能吗?
【问题讨论】: