c#Reflect中MethodInfo使用方法(字符串反射调用函数方法的实现)

目录

1字符串调用

2函数方法


1字符串调用

         private void test反射ToolStripMenuItem_Click(object sender, EventArgs e){Type type = typeof(ReflectTest);object reflectTest = Activator.CreateInstance(type);//不带参数且不返回值的方法的调用MethodInfo methodInfo = type.GetMethod("MethodWithNoParamerNoReturn");method

本文链接:https://my.lmcjl.com/post/8931.html

展开阅读全文

4 评论

留下您的评论.