有两种方法:
1.用若干个if语句实现
if(str=="function1") function1();
if(str=="function2") function2();
if(str=="function3") function3();
2.用反射,效率不是很高,而且很麻烦.这是我在网上找的一个例子:
System.Reflection.Assembly ass;
Type type ;
object obj;
try
{
ass = System.Reflection.Assembly.LoadFile(@"d:\TestReflect.dll");
type = ass.GetType("Webtest.ReflectTest");//必须使用名称空间+类名称
System.Reflection.MethodInfo method = type.GetMethod("WriteString");//方法的名称
obj = ass.CreateInstance("Webtest.ReflectTest");//必须使用名称空间+类名称
string s = (string)method.Invoke(obj,new string[]{"jianglijun"}); //实例方法的调用
Response.Write(s+"
");
method = type.GetMethod("WriteName");//方法的名称
s = (string)method.Invoke(null,new string[]{"jianglijun"}); //静态方法的调用
Response.Write(s+"
");
method = type.GetMethod("WriteNoPara");//无参数的实例方法
s = (string)method.Invoke(obj,null);
Response.Write(s+"
");
method = null;
}
catch(Exception ex)
{
Response.Write(ex+"
");
}
finally
{
ass = null;
type = null;
obj = null;
}
}