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