0

如何在控制台应用程序的按键上换行。

这是我到目前为止所尝试的:

static void Main(string[] args)
    {
       var button = Console.ReadKey();
        if(button.Key == ConsoleKey.Enter){
            newline;
        }
    }

例如:我想做一些当用户按下回车键时会换行的东西。

4

3 回答 3

4
     while ( true )
     {
        var button = Console.ReadKey();
        if ( button.Key == ConsoleKey.Enter )
        {
           Console.WriteLine();
        }            
     }
于 2013-09-06T15:50:36.040 回答
1

如果您需要转到下一行,请使用

  Console.Write(System.Environment.NewLine);

如果您需要添加空行,请使用

  Console.WriteLine();
于 2013-09-06T16:05:29.837 回答
0

只需使用:

Console.WriteLine();

这应该为您移动到新行。

于 2013-09-06T15:52:21.793 回答