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