示例#1
0
        public static ICustomizedProperty CreateCustomizedProperty(string typeName, uint id, string name, string valueStr)
        {
            if (_Creators.ContainsKey(typeName))
            {
                TypeCreator creator = _Creators[typeName];
                return(creator.CreateCustomizedProperty(id, name, valueStr));
            }

            Debug.Check(false);
            return(null);
        }