Exemple #1
0
        public static ElementMap GetMap(Type t)
        {
            ElementMap map = elementMaps [t] as ElementMap;

            if (map != null)
            {
                return(map);
            }
            map             = new ElementMap(t);
            elementMaps [t] = map;
            return(map);
        }
		public static ElementMap GetMap (Type t)
		{
			ElementMap map = elementMaps [t] as ElementMap;
			if (map != null) return map;
			map = new ElementMap (t);
			elementMaps [t] = map;
			return map;
		}