使用反射通过字符串动态调用函数

public class Test
{
    public string GetArticle(string title)
    {
        ....
    }
}

Test test = new Test();
MethodInfo m = test.GetType().GetMethod("GetArticle");
if(m == null) reture;
string text = m.Invoke(test, new object[] { "xxx" }).ToString();

注:使用反射动态调用函数时请保证所调用的函数为公有,既修饰符为public


下面是利用反射实现用户控件调用父页面函数的例子:

http://blog.csdn.net/ptyzhu/article/details/7893513





你可能感兴趣的:(ASP.NET(c#))