Example #1
0
        static void Main(string[] args)
        {
            Sello.mensaje = "\nhola";

            Sello.color = ConsoleColor.Cyan;

            Sello.ImprimirEnColor();

            Console.WriteLine(Sello.Imprimir());

            Sello.Borrar();

            Sello.mensaje = "Otro color pa";

            Sello.color = ConsoleColor.White;

            Sello.ImprimirEnColor();

            Console.WriteLine(Sello.Imprimir());

            Sello.Borrar();

            Console.ReadKey();
        }
Example #2
0
 public static string Imprimir()
 {
     Sello.mensaje = Sello.ArmarFormatoMensaje();
     return(Sello.mensaje);
 }