如何在 C# 中更改控制台的 CursorTop?


要在 C# 中更改控制台的 CursorTop,请使用 Console.CursorTop 属性

举例

让我们看一个示例 -

using System;
class Demo {
   public static void Main (string[] args) {
      Console.BackgroundColor = ConsoleColor.Blue;
      Console.WriteLine("Background color changed = "+Console.BackgroundColor);
      Console.ForegroundColor = ConsoleColor.Yellow;
      Console.WriteLine("
Foreground color changed = "+Console.ForegroundColor);       Console.CursorTop = 20;       Console.WriteLine("
CursorTop = "+Console.CursorTop);    } }

输出

这将产生以下输出 -

更新于: 14-11-2019

154 个浏览量

开启您的 职业生涯

完成课程以获得认证

开始
广告
© . All rights reserved.