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(); }
public static string Imprimir() { Sello.mensaje = Sello.ArmarFormatoMensaje(); return(Sello.mensaje); }