1、直接使用类型作为typeof的参数
Type myClass = typeof(Class1);
object obj = myClass.GetConstructor(new Type[] { }).Invoke(new object[] { });
2、使用字符串获得Type
Type myClass = Type.GetType("Assets.Scripts.Class1", false, false);
object obj = myClass.GetConstructor(new Type[] { }).Invoke(new object[] { });