老师,看不太懂这几句代码的含义呢。求解释
Type myType = typeof(MyClass1);
Type[] types = new Type[1]; types[0] = typeof(int);
// Get the constructor that takes an integer as a parameter.
ConstructorInfo constructorInfoObj = myType.GetConstructor(types);
同学你好,可以参考一下:
http://www.csref.cn/vs100/method/System-Type-GetConstructor.html
https://www.cnblogs.com/xcsn/p/9052330.html
另外反射这方面的内容可以看一下C#第三季教程,学习路线里老师有讲解