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

จะเปลี่ยนสีพื้นหน้าของข้อความใน C # Console ได้อย่างไร


หากต้องการเปลี่ยนสีพื้นหน้าของข้อความ ให้ใช้คุณสมบัติ Console.ForegroundColor ใน 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);
   }
}

ผลลัพธ์

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

จะเปลี่ยนสีพื้นหน้าของข้อความใน C # Console ได้อย่างไร