static void Main(string[] args) { Console.ForegroundColor = ConsoleColor.Yellow; Sello.color = ConsoleColor.Blue; Sello.mensaje = "Hola Mundo"; Sello.imprimirEnColor(); Console.ReadLine(); Sello.borrar(); Sello.mensaje = "Aguante Boca"; Console.WriteLine(Sello.imprimir()); Console.ReadLine(); }