当实例缺少公共构造函数时,有什么方法可以从 .NET 中的 AppDomain 创建实例吗?
我需要使用 AppDomain 创建类的实例。然而,该类没有公共构造函数;它是通过静态方法创建的。有什么方法可以做到这一点还是必须有一个公共构造函数?
public class MyClass
{
public static MyClass CreateInstance(int arg1, string arg2, string arg3)
{
return new MyClass(arg1, arg2, arg3);
}
internal MyClass(int arg1, string arg2, string arg3){};
}
I need to create an instance of a class using an AppDomain. The class, however, does not have a public constructor; it is created through a static method. Is there any way of doing this or does it have to have a public constructor?
public class MyClass
{
public static MyClass CreateInstance(int arg1, string arg2, string arg3)
{
return new MyClass(arg1, arg2, arg3);
}
internal MyClass(int arg1, string arg2, string arg3){};
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要创建一个辅助类,您可以通过正常的构造函数调用来创建该辅助类。然后,您将有一个方法调用
MyClass
上的静态方法并向您返回实例。如果你愿意的话,一个MyClassFactory
。I think you need to create a helper class, one that you can create through a normal constructor call. You would then have a method on it that invokes the static method on
MyClass
and returns instances to you. AMyClassFactory
, if you will.