加载程序集并使用反射创建类

本文关键字:反射 创建 程序集 加载 | 更新日期: 2023-09-27 18:13:35

我找不到使用反射从给定类型和程序集定义创建类对象的方法。对于我的例子,我有一个包含类和程序集名称的字符串,并且需要创建对象:

string str = "My.Assembly.Namesapce.MyClass, My.Assembly.Namesapce, Version=4.0.0.0, Culture=neutral, PublicKeyToken=84474dc3c6524430";
var objClass = --SOME CODE TO USE  STR AND CREATE MyClass--

我尝试过拆分和创建类,但这不是很好的方法。

加载程序集并使用反射创建类

Type type = Type.GetType(str);
object objClass = Activator.CreateInstance(type);

然而,要对对象做任何有用的事情,您将不得不使用公共接口/基类,反射或dynamic

注意:如果您可以将变量键入MyClass objClass,那么更简单的版本当然是:

MyClass objClass = new MyClass();

您需要做两件事:

1)将字符串str转换为类型,并且2)创建一个该类型的实例

string typeString = "My.Assembly.Namesapce.MyClass, My.Assembly.Namesapce, Version=4.0.0.0, Culture=neutral, PublicKeyToken=84474dc3c6524430";
// Get a reference to the type.
Type theType = Type.GetType(typeString, true, false);
// Create an instance of that type.
MyClass  theInstance = (MyClass)Activator.CreateInstance(theType);