Ejemplo n.º 1
0
        public npcactionCell getCell(int key)
        {
            npcactionCell t = null;

            this.AllData.TryGetValue(key.ToString(), out t);
            return(t);
        }
Ejemplo n.º 2
0
        public npcactionCell getCell(string key)
        {
            npcactionCell t = null;

            this.AllData.TryGetValue(key, out t);
            return(t);
        }