Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

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("\nForeground color changed = "+Console.ForegroundColor);
      Console.CursorTop = 20;
      Console.WriteLine("\nCursorTop = "+Console.CursorTop);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

C#에서 콘솔의 CursorTop을 변경하는 방법은 무엇입니까?