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