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

            Console.WriteLine(Sello.Imprimir());//retorna string

            Sello.Borrar();

            Console.WriteLine(Sello.Imprimir());//retorna string

            Sello.mensaje = "nahuel cisa";

            Sello.color = ConsoleColor.Red;

            Sello.ImprimirEnColor();

            Console.WriteLine(Sello.Imprimir());

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

            return(Sello.mensaje);
        }