コード例 #1
0
        public static object CreateObject(string typeName, Injector injector, string jsonData = null)
        {
            Type type = TypeHelper.FindTypeByFullName(typeName);

            return(CreateObject(type, injector, jsonData));
        }