static public string Mostrar(Tempera tipoTempera) { if (!Equals(tipoTempera, null)) { return(tipoTempera.Mostrar()); } else { return(" "); } }
private string Mostrar() { //string datoAMostrar = "No hay nada."; //for (int i = 0; i<this._cantidadMaxima; i++) //{ // datoAMostrar += Tempera.Mostrar(this._tempera[i]); //} //return datoAMostrar; StringBuilder retorno = new StringBuilder(); foreach (Tempera e in this._tempera) { if (!Equals(e, null)) { retorno.AppendLine(Tempera.Mostrar(e)); } } return(retorno.ToString()); }