C#通过对象类型创建对象实例的代码

2021-06-06 02:05

阅读:342

标签: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[]{});




 

C#通过对象类型创建对象实例的代码

标签:classname   []   string   type   name   对象   关于   class   mob   

原文地址:https://www.cnblogs.com/lpypg/p/10794501.html


评论


亲,登录后才可以留言!