C # bir dizeden bir işlevi çağırmadan

6 Cevap

Ben php Senin gibi bir çağrı yapmak mümkün biliyorum:

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

function hello() { echo 'hello'; }

Bu. Net mümkün mü?

6 Cevap

Evet. Sen yansıma kullanabilirsiniz. Böyle bir şey:

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

Bir dinamik bir yöntem çağırma yapıyor, yansıma kullanarak bir sınıf örneğinin yöntemlerini çağırabilirsiniz:

Bir gerçek örneği merhaba denilen bir yöntem (bu) olduğunu varsayalım:

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);

Bu yansıma ve InvokeMember yöntemiyle mümkündür.

C #, sen işlev işaretçileri olarak delege oluşturabilirsiniz. Kullanımı hakkında bilgi için aşağıdaki MSDN makalesine bakın: http://msdn.microsoft.com/en-us/library/ms173171(VS.80).aspx

    public static void hello()
    {
        Console.Write("hello world");
    }

   /* code snipped */

    public delegate void functionPointer();

    functionPointer foo = hello;
    foo();  // Writes hello world to the console.
<!-- language: c# -->

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();
        }
    }

Bu bana teşekkür ederim yardım

Ben senin yöntem de KAMU olması gerektiğini gördüm.