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