我知道在php中您可以拨打电话,例如:
$function_name = 'hello'; $function_name(); function hello() { echo 'hello'; }
.Net有可能吗?
是。您可以使用反射。像这样:
Type thisType = this.GetType(); MethodInfo theMethod = thisType.GetMethod(TheCommandString); theMethod.Invoke(this, userParameters);