Compact Framework - 如何在没有默认构造函数的情况下动态创建类型?

Posted

技术标签:

【中文标题】Compact Framework - 如何在没有默认构造函数的情况下动态创建类型?【英文标题】:Compact Framework - how do I dynamically create type with no default constructor? 【发布时间】:2010-09-06 23:08:51 【问题描述】:

我正在使用 .NET CF 3.5。我要创建的类型没有默认构造函数,因此我想将字符串传递给重载的构造函数。我该怎么做?

代码:

Assembly a = Assembly.LoadFrom("my.dll");
Type t = a.GetType("type info here");
// All ok so far, assembly loads and I can get my type

string s = "Pass me to the constructor of Type t";
MyObj o = Activator.CreateInstance(t); // throws MissMethodException

【问题讨论】:

【参考方案1】:
MyObj o = null;
Assembly a = Assembly.LoadFrom("my.dll");
Type t = a.GetType("type info here");

ConstructorInfo ctor = t.GetConstructor(new Type[]  typeof(string) );
if(ctor != null)
   o = ctor.Invoke(new object[]  s );

【讨论】:

【参考方案2】:

好的,这是一个时髦的辅助方法,可以灵活地激活给定参数数组的类型:

static object GetInstanceFromParameters(Assembly a, string typeName, params object[] pars) 

    var t = a.GetType(typeName);

    var c = t.GetConstructor(pars.Select(p => p.GetType()).ToArray());
    if (c == null) return null;

    return c.Invoke(pars);

你这样称呼它:

Foo f = GetInstanceFromParameters(a, "SmartDeviceProject1.Foo", "hello", 17) as Foo;

所以你将程序集和类型的名称作为前两个参数传递,然后依次传递所有构造函数的参数。

【讨论】:

【参考方案3】:

看看这是否适合你(未经测试):

Type t = a.GetType("type info here");
var ctors = t.GetConstructors();
string s = "Pass me to the ctor of t";
MyObj o = ctors[0].Invoke(new[]  s ) as MyObj;

如果该类型有多个构造函数,那么您可能需要做一些花哨的工作才能找到接受您的字符串参数的那个。

编辑:刚刚测试了代码,它可以工作。

Edit2:Chris' answer 展示了我所说的花哨的步法! ;-)

【讨论】:

以上是关于Compact Framework - 如何在没有默认构造函数的情况下动态创建类型?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 .NET compact framework 2.0 播放 MIDI 文件?

如何在 Compact Framework 中使用 MS Access 数据库?

c# - 针对 Compact Net Framework 3.5 编译时出错 - 方法 'GetString' 没有重载采用 '1' 参数

Compact Framework 的 Zip 库选项?

在 .NET Compact Framework 中使用简单的 SOAP

Compact Framework - 是不是有可用的 MVC 框架/库?