使用 Type.GetType() 获取类型以及如何以这种典型类型新建对象?
Use Type.GetType() to get the type and how to new an object in this typical type?
Type typesample = packet.GetType();
然后我想new一个typesample类型的对象
您可以使用
var instance = Activator.CreateInstance(typesample);
您可以使用激活器实例化类型class:
var item = Activator.CreateInstance(typesample);
Type typesample = packet.GetType();
然后我想new一个typesample类型的对象
您可以使用
var instance = Activator.CreateInstance(typesample);
您可以使用激活器实例化类型class:
var item = Activator.CreateInstance(typesample);