C#通过对象类型创建对象实例的代码
2021-06-06 02:05
标签:classname [] string type name 对象 关于 class mob 下边代码内容是关于C#通过对象类型创建对象实例的代码。 object[] paramObject = new object[] {}; string className = "MyType"; C#通过对象类型创建对象实例的代码 标签:classname [] string type name 对象 关于 class mob 原文地址:https://www.cnblogs.com/lpypg/p/10794501.html
object obj = Activator.CreateInstance(type, paramObject);
或者
MyType myType = (MyType) Activator.CreateInstance(Type.GetType(className), new object[]{});