public static void ImprimirEnColor() { Console.ForegroundColor = Sello.color; Console.WriteLine(Sello.Imprimir()); Console.ForegroundColor = ConsoleColor.DarkGray; }
static void Main(string[] args) { Sello.color = ConsoleColor.Red; Sello.mensaje = "Hola"; Sello.ImprimirEnColor(); Console.WriteLine(Sello.Imprimir()); Console.ReadKey(); }