private string Mostrar() { StringBuilder sb = new StringBuilder(); sb.AppendLine("Pluma: " + this._pluma); if (this._tinta is null) { sb.AppendLine("Tinta: Datos no Ingresados"); } else { sb.AppendLine(Tinta.Mostrar(this._tinta)); } sb.AppendLine("Cantidad: " + this._cantidad); return(sb.ToString()); }
private string Mostrar() { return(this.cantidad + " - " + this.marca + " - " + Tinta.Mostrar(this.tinta)); }
public static string Mostrar(Tinta algo) { return(algo.Mostrar()); }
public static string Mostrar(Tinta tinta) { //return tinta._color + "-" + tinta._tipoTinta; return(tinta.Mostrar()); }
public static string Mostrar(Tinta tipo) { return(tipo.Mostrar()); }
private string Mostrar() { return(this.marca.ToString() + "." + Tinta.Mostrar(this.tinta) + "." + this.cantidad.ToString()); //tengo que mostrar todas las tintas }
private string Mostrar() { return("Marca: " + this._Marca + ", " + Tinta.Mostrar(this._Tinta)); }
public static string Mostrar(Tinta tipoTinta)// NO USAR THIS EN METODOS ESTATICOS { return(tipoTinta.Mostrar()); }
//Se hace un funcion publica porque desde el main no se puede llamar //Asi que se llama a la privada desde la publica public static string Mostrar(Tinta objeto) { return(objeto.Mostrar()); }
private string Mostrar() { return(this._marca + "-" + "- " + Tinta.Mostrar(this._tinta) + "-" + "-" + this._cantidad); }
public static string Mostrar(Tinta unaTinta) { return(unaTinta.Mostrar()); }
public static string Mostrar(Tinta tipo) { string s = tipo.Mostrar(); return(s); }