Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะเปลี่ยน CursorSize ของ Console ใน C # ได้อย่างไร?


หากต้องการเปลี่ยน CursorSize ของ Console ใน C# ให้ใช้คุณสมบัติ Console.CursorSize ใน C#

ตัวอย่าง

เรามาดูตัวอย่างกัน −

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.CursorSize = 1;
      Console.WriteLine("\nCursorSize = "+Console.CursorSize);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

จะเปลี่ยน CursorSize ของ Console ใน C # ได้อย่างไร?