можно ли вызвать делегат, хранящийся в переменной, по имени переменной (в виде строки)? Я думаю, мне придется использовать механизм отражения, но я никуда не денусь
пример кода:
class Demo {
public delegate int DemoDelegate();
private static int One() {
return 1;
}
private static void CallDelegate(string name) {
// somehow get the value of the variable with the name
// stored in "name" and call the delegate using reflection
}
private static void CallDelegate(string name, DemoDelegate d) {
d();
}
static void main(string[] args) {
DemoDelegate one = Demo.One;
CallDelegate(one);
// this works, but i want to avoid writing the name of the variable/delegate twice:
CallDelegate("one", one);
}
}
это вообще возможно? если так как? если нет, то я должен использовать вторую форму, невезение