我的类没有默认的无参数构造函数。它有一个这样的构造函数:

public Section(string fileName) {...}

我将在一些 AppDomain 内创建我的类的一个实例。如果我的类有一个默认构造函数,那么我会这样做:
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
)

关于c# - 如何将构造函数参数传递给 AppDomain.CreateInstanceXXX?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40264248/

10-13 02:15