Esempio n. 1
0
        TmGridMap Get(string key)
        {
            TmGridMap map = null;

            GridMaps.TryGetValue(key, out map);
            return(map);
        }
Esempio n. 2
0
        void Add(string key, TmGridMap map)
        {
            TmGridMap tem;

            GridMaps.TryGetValue(key, out tem);
            if (tem == null)
            {
                GridMaps.Add(key, map);
            }
        }