예제 #1
0
        public exitgateCell getCell(int key)
        {
            exitgateCell t = null;

            this.AllData.TryGetValue(key.ToString(), out t);
            return(t);
        }
예제 #2
0
        public exitgateCell getCell(string key)
        {
            exitgateCell t = null;

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