当前位置:  开发笔记 > 编程语言 > 正文

从C#中的字符串调用函数

如何解决《从C#中的字符串调用函数》经验,为你挑选了3个好方法。

我知道在php中你可以拨打电话:

$function_name = 'hello';
$function_name();

function hello() { echo 'hello'; }

这可能在.Net吗?



1> ottobar..:

是.你可以使用反射.像这样的东西:

Type thisType = this.GetType();
MethodInfo theMethod = thisType.GetMethod(TheCommandString);
theMethod.Invoke(this, userParameters);


这需要"使用System.Reflection";

2> CMS..:

您可以使用反射调用类实例的方法,执行动态方法调用:

假设您在实际实例中有一个名为hello的方法(this):

string methodName = "hello";

//Get the method information using the method info class
 MethodInfo mi = this.GetType().GetMethod(methodName);

//Invoke the method
// (null- no parameter for the method call
// or you can pass the array of parameters...)
mi.Invoke(this, null);



3> BFree..:
class Program
    {
        static void Main(string[] args)
        {
            Type type = typeof(MyReflectionClass);
            MethodInfo method = type.GetMethod("MyMethod");
            MyReflectionClass c = new MyReflectionClass();
            string result = (string)method.Invoke(c, null);
            Console.WriteLine(result);

        }
    }

    public class MyReflectionClass
    {
        public string MyMethod()
        {
            return DateTime.Now.ToString();
        }
    }

推荐阅读
落单鸟人
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有