Я знаю, що в php ви можете телефонувати на зразок:
$function_name = 'hello';
$function_name();
function hello() { echo 'hello'; }
Чи можливо це в .Net?
Я знаю, що в php ви можете телефонувати на зразок:
$function_name = 'hello';
$function_name();
function hello() { echo 'hello'; }
Чи можливо це в .Net?
Відповіді:
Так. Можна використовувати рефлексію. Щось на зразок цього:
Type thisType = this.GetType();
MethodInfo theMethod = thisType.GetMethod(TheCommandString);
theMethod.Invoke(this, userParameters);
Type thisType = this.GetType(); MethodInfo theMethod = thisType.GetMethod(TheCommandString, BindingFlags.NonPublic | BindingFlags.Instance); theMethod.Invoke(this, userParameters);
Ви можете викликати методи екземпляра класу за допомогою відображення, роблячи виклик динамічного методу:
Припустимо, у вас є метод, який називається привіт у фактичному екземплярі (це):
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);
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();
}
}
Незначна дотична - якщо ви хочете проаналізувати та оцінити цілий рядок виразів, який містить (вкладені!) Функції, врахуйте NCalc ( http://ncalc.codeplex.com/ та nuget)
Вих. трохи змінено з проектної документації:
// the expression to evaluate, e.g. from user input (like a calculator program, hint hint college students)
var exprStr = "10 + MyFunction(3, 6)";
Expression e = new Expression(exprString);
// tell it how to handle your custom function
e.EvaluateFunction += delegate(string name, FunctionArgs args) {
if (name == "MyFunction")
args.Result = (int)args.Parameters[0].Evaluate() + (int)args.Parameters[1].Evaluate();
};
// confirm it worked
Debug.Assert(19 == e.Evaluate());
І всередині EvaluateFunction
делегата ви б назвали існуючу функцію.
У Факті я працюю над Windows Workflow 4.5, і мені вдалося знайти спосіб передати делегата від автомату до методу без успіху. Єдиний спосіб, який мені вдалося знайти, - це передати рядок з ім'ям методу, який я хотів передати як делегат і перетворити рядок у делегата всередині методу. Дуже приємна відповідь. Дякую. Перевірте це посилання https://msdn.microsoft.com/en-us/library/53cz7sc6(v=vs.110).aspx
class Program
{
static void Main(string[] args)
{
string method = args[0]; // get name method
CallMethod(method);
}
public static void CallMethod(string method)
{
try
{
Type type = typeof(Program);
MethodInfo methodInfo = type.GetMethod(method);
methodInfo.Invoke(method, null);
}
catch(Exception ex)
{
Console.WriteLine("Error: " + ex.Message);
Console.ReadKey();
}
}
public static void Hello()
{
string a = "hello world!";
Console.WriteLine(a);
Console.ReadKey();
}
}
У C # ви можете створювати делегатів як покажчики функцій. Перегляньте наступну статтю MSDN щодо інформації про використання: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.
public
також повинен бути і ваш метод .