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