C# - 在程序运行时重写/编辑行

时间:2015-12-22 20:32:33

标签: c# console-application edit prompt

有没有办法可以编辑/重写已经由Console.PrintLine()方法打印过的某些行?我必须能够编辑提示中显示的任何行。

这是一个关于我试图运行的代码的示例,可能看起来像:

public static void RewriteLine(LineNr, Text)
{
    //Code
}

Console.WriteLine("Text to be rewritten");
Console.Writeline("Just some text");
RewriteLine(1, "New text");

示例根据前一代码的输出显示我想要重写的行:

要重写的文本 //此行(已由Console.WriteLine()方法执行的bin)将替换为:“New text”

只是一些文字

1 个答案:

答案 0 :(得分:6)

它应该是这样的:

public static void RewriteLine(int lineNumber, String newText)
{
    int currentLineCursor = Console.CursorTop;
    Console.SetCursorPosition(0, currentLineCursor - lineNumber);
    Console.Write(newText); Console.WriteLine(new string(' ', Console.WindowWidth - newText.Length)); 
    Console.SetCursorPosition(0, currentLineCursor);
}

static void Main(string[] args)
{
    Console.WriteLine("Text to be rewritten");
    Console.WriteLine("Just some text");
    RewriteLine(2, "New text");
}

发生的事情是你改变光标位置并在那里写点什么。您应该添加一些代码来处理长字符串。