如何将构造函数参数传递给AppDomain.CreateInstanceXXX?
How to transfer constructor parameters to AppDomain.CreateInstanceXXX?
我的 class 没有默认的无参数构造函数。它有这样一个构造函数:
public Section(string fileName) {...}
我要在一些 AppDomain
中创建我的 class 的实例。如果我的 class 有一个默认构造函数,那么我会这样做:
AppDomain domain = AppDomain.CreateDomain("ACAD-0001:409");
ISection section = (ISection)domain.CreateInstanceAndUnwrap(
typeof(Section).Assembly.FullName, typeof(Section).FullName);
但是没有默认构造函数。如何传递构造函数的参数?
我希望它能像这样工作:
string cuiFile = "...";
ISection section = (ISection)domain.CreateInstanceAndUnwrap(
typeof(Section).Assembly.FullName,
typeof(Section).FullName,
new object[] { cuiFile });
但这行不通。
您需要使用this overload:
public object CreateInstanceAndUnwrap(
string assemblyName,
string typeName,
bool ignoreCase,
BindingFlags bindingAttr,
Binder binder,
object[] args, // <-- args go here
CultureInfo culture,
object[] activationAttributes
)
我的 class 没有默认的无参数构造函数。它有这样一个构造函数:
public Section(string fileName) {...}
我要在一些 AppDomain
中创建我的 class 的实例。如果我的 class 有一个默认构造函数,那么我会这样做:
AppDomain domain = AppDomain.CreateDomain("ACAD-0001:409");
ISection section = (ISection)domain.CreateInstanceAndUnwrap(
typeof(Section).Assembly.FullName, typeof(Section).FullName);
但是没有默认构造函数。如何传递构造函数的参数?
我希望它能像这样工作:
string cuiFile = "...";
ISection section = (ISection)domain.CreateInstanceAndUnwrap(
typeof(Section).Assembly.FullName,
typeof(Section).FullName,
new object[] { cuiFile });
但这行不通。
您需要使用this overload:
public object CreateInstanceAndUnwrap(
string assemblyName,
string typeName,
bool ignoreCase,
BindingFlags bindingAttr,
Binder binder,
object[] args, // <-- args go here
CultureInfo culture,
object[] activationAttributes
)