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