当实例缺少公共构造函数时,有什么方法可以从 .NET 中的 AppDomain 创建实例吗?

发布于 2024-10-22 02:12:40 字数 322 浏览 4 评论 0原文

我需要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌辣 2024-10-29 02:12:40

我认为您需要创建一个辅助类,您可以通过正常的构造函数调用来创建该辅助类。然后,您将有一个方法调用 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. A MyClassFactory, if you will.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文