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); }