public shopCell getCell(int key) { shopCell t = null; this.AllData.TryGetValue(key.ToString(), out t); return(t); }
public shopCell getCell(string key) { shopCell t = null; this.AllData.TryGetValue(key, out t); return(t); }