Wiem, że w php możesz wykonać połączenie takie jak:
$function_name = 'hello';
$function_name();
function hello() { echo 'hello'; }
Czy to możliwe w .Net?
Wiem, że w php możesz wykonać połączenie takie jak:
$function_name = 'hello';
$function_name();
function hello() { echo 'hello'; }
Czy to możliwe w .Net?
Odpowiedzi:
Tak. Możesz użyć refleksji. Coś takiego:
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);
Możesz wywołać metody instancji klasy za pomocą odbicia, wykonując dynamiczne wywołanie metody:
Załóżmy, że masz metodę o nazwie hello w rzeczywistym wystąpieniu (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);
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();
}
}
Nieznaczna styczna - jeśli chcesz przeanalizować i ocenić cały ciąg wyrażenia, który zawiera (zagnieżdżone!) Funkcje, rozważ NCalc ( http://ncalc.codeplex.com/ i nuget )
Dawny. nieznacznie zmodyfikowany w stosunku do dokumentacji projektowej:
// 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());
A w ramach EvaluateFunction
delegata nazwałbyś swoją istniejącą funkcję.
W rzeczywistości pracuję nad Windows Workflow 4.5 i muszę znaleźć sposób na przekazanie delegata z maszyny stanu do metody bez powodzenia. Jedynym sposobem, w jaki mogłem znaleźć, było przekazanie ciągu z nazwą metody, którą chciałem przekazać jako delegata, i przekonwertowanie ciągu na delegata wewnątrz metody. Bardzo ładna odpowiedź. Dzięki. Sprawdź ten link 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();
}
}
W C # można tworzyć delegatów jako wskaźniki funkcji. Zapoznaj się z następującym artykułem MSDN, aby uzyskać informacje na temat użycia: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
.