Activator根
System名称空间中的类非常强大。
http://msdn.microsoft.com/zh-
CN/library/system.activator.createinstance.aspx
或(新路径)
https://docs.microsoft.com/zh-
cn/dotnet/api/system.activator.createinstance
以下是一些简单的示例:
ObjectType instance = (ObjectType)Activator.CreateInstance(objectType);ObjectType instance = (ObjectType)Activator.CreateInstance("MyAssembly","MyNamespace.ObjectType");
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)