Esempio n. 1
0
        public static void ImprimirEnColor()
        {
            Console.ForegroundColor = Sello.color;

            Console.WriteLine(Sello.Imprimir());

            Console.ForegroundColor = ConsoleColor.Gray;
        }
Esempio n. 2
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);
        }