using System.Reflection;    

string method = Request["Method"].ToString();
            MethodInfo methodInfo = this.GetType().GetMethod(method);
            methodInfo.Invoke(this, null);

相关文章:

  • 2021-10-04
  • 2022-12-23
  • 2022-12-23
  • 2021-09-02
  • 2022-02-16
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
  • 2021-09-06
  • 2022-12-23
相关资源
相似解决方案