string strClass = "stringConvertClass.test";  //命名空间+类名
    string strMethod = "Method";//方法名
    Type t; 
    object obj;
    t = Type.GetType(strClass);//通过string类型的strClass获得同名类“t”
    System.Reflection.MethodInfo method = t.GetMethod(strMethod);//通过string类型的strMethod获得同名的方法“method”
    obj = System.Activator.CreateInstance(t);//创建t类的实例 "obj"
    method.Invoke(obj,null);//t类实例obj,调用方法"method"
    //上面的方法是无参的,下面是有参的情况.
    object[] objs = new object[]{testcase};
    method.Invoke(obj,objs );//t类实例obj,调用方法"method(testcase)"C# 外界调用方法是 方法名是string类型的解决方法

相关文章:

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