2011-07-28 26 views

Respuesta

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

¡Así que no necesita usar la API de Windows! – king9981

4
Console.ForegroundColor = ConsoleColor.Green; 
Console.BackgroundColor = Console.Color.White; 
Cuestiones relacionadas