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();
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            Sello.mensaje = "";
            Sello.color   = ConsoleColor.DarkBlue;

            Console.WriteLine(Sello.Imprimir());

            Sello.ImprimirEnColor();

            Sello.borrar();



            Console.ReadLine();
        }