Dada la Consola normal en C#, el color predeterminado del primer plano del texto es «Negro». La tarea es cambiar este color a algún otro color.
Enfoque: esto se puede hacer usando la propiedad ForegroundColor en la clase Console del paquete System en C#.
Programa 1: Cambiar el color de primer plano de la consola a azul.
// C# program to illustrate the // ForegroundColor property using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GFG { class Program { static void Main(string[] args) { // Display current Foreground color Console.WriteLine("Default Foreground Color: {0}", Console.ForegroundColor); // Set the Foreground color to blue Console.ForegroundColor = ConsoleColor.Blue; // Display current Foreground color Console.WriteLine("Changed Foreground Color: {0}", Console.ForegroundColor); } } }
Producción:
Programa 2: La lista de colores disponibles en los que se puede cambiar ForegroundColor son
// C# program to get the // list of available colors using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GFG { class Program { static void Main(string[] args) { // Get the list of available colors // that can be changed ConsoleColor[] consoleColors = (ConsoleColor[])ConsoleColor .GetValues(typeof(ConsoleColor)); // Display the list // of available console colors Console.WriteLine("List of available " + "Console Colors:"); foreach(var color in consoleColors) Console.WriteLine(color); } } }
Producción:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA