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

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

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