码迷,mamicode.com
首页 > 其他好文 > 详细

StructureMap.dll 中的 GetInstance 重载

时间:2015-06-08 13:09:05      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

        public static T GetInstance<T>(ExplicitArguments args);
        //
        // Summary:
        //     Creates a new instance of the requested type T using the supplied Instance.
        //     Mostly used internally
        //
        // Parameters:
        //   instance:
        public static T GetInstance<T>(Instance instance);
        //
        // Summary:
        //     Creates or finds the default instance of the pluginType
        //
        // Parameters:
        //   pluginType:
        public static object GetInstance(Type pluginType);
        //
        // Summary:
        //     Creates a new instance of the requested type using the supplied Instance.
        //     Mostly used internally
        //
        // Parameters:
        //   targetType:
        //
        //   instance:
        public static object GetInstance(Type targetType, Instance instance);

 

用 反射动态 创建泛型类的方法 :

var d1 = Type.GetType("GenericTest.TaskA`1"); // GenericTest was my namespace, add yours
Type[] typeArgs = { typeof(Item) };
var makeme = d1.MakeGenericType(typeArgs);
object o = Activator.CreateInstance(makeme);

 

StructureMap.dll 中的 GetInstance 重载

标签:

原文地址:http://www.cnblogs.com/kmsfan/p/4560606.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!