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