Computer >> Máy Tính >  >> Lập trình >> C#

Làm cách nào để thay đổi CursorLeft của Console trong C #?

Để thay đổi CursorLeft của Console trong C #, hãy sử dụng thuộc tính Console.CursorLeft.

Ví dụ

Hãy để chúng tôi xem một ví dụ -

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.CursorLeft = 30;
      Console.Write("CursorLeft position: "+Console.CursorLeft);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Làm cách nào để thay đổi CursorLeft của Console trong C #?