private int GetIndice(Cocina c) { int retorno = -1; int tam; int i; tam = this._lista.Count; for (i = 0; i < tam; i++) { if (this._lista[i] == c) { retorno = i; break; } } return(retorno); }
public bool Remover(Cocina c) { return(this - c); }
public bool Agregar(Cocina c) { return(this + c); }