2011-07-28 21 views

cevap

9
Console.BackgroundColor//t set the background color for the text. 
Console.ForegroundColor//to set the foreground color for the text. 
Console.ResetColor();//set back the foreground color and background color to the default. 
+0

Windows API'yi kullanmaya gerek yok! – king9981

2

de hepsini oku

Console.BackgroundColor = ConsoleColor.Blue; 
Console.ForegroundColor = ConsoleColor.Red; 

ayarlamak için yeterlidir

Console.ForegroundColor

4
Console.ForegroundColor = ConsoleColor.Green; 
Console.BackgroundColor = Console.Color.White; 
İlgili konular