作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以通过变量名(作为字符串)调用存储在变量中的委托(delegate)?我想我必须使用反射机制,但我什么也得不到
示例代码:
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);
}
}
这可能吗?如果是这样怎么办?如果没有,那我只好用第二种形式了,运气不好
最佳答案
变量几乎不存在。可靠地按字符串调用(在这种情况下)的唯一方法是将委托(delegate)存储在字典中:
Dictionary<string, DemoDelegate> calls = new Dictionary<string, DemoDelegate>
{
{"one",one}, {"two",two}
}
现在将该字典存储在某处(通常是在一个字段中),然后执行如下操作:
private int CallDelegate(string name) {
return calls[name].Invoke(); // <==== args there if needed
}
关于c# - 如何在 C# 中从字符串调用委托(delegate)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6010555/
我是一名优秀的程序员,十分优秀!