C# 中的代表
如何使用反射添加委托方法?让我们考虑一下我有两个程序集,一个 AAA 包含委托的定义,另一个 BBB 包含要添加到委托的方法。在 BBB 中,我已将方法添加到 AAA 中的委托。如何完成此场景?
How to add a method to delegate Using reflection? Let us consider im having two assemblies,one AAA contains the definition of delegates and another one BBB contains the method to be added to the delegate.In BBB i have add the method to the delegate in AAA.How to accomplish this scenario?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的事情(警告 - 未编译测试):
如果它不是您要添加的事件,而只是另一个
Delegate
,那么您可以使用Delegate.Combine
:Something like this (warning - not compile tested):
If it's not an event you want to add to, but just another
Delegate
, then you useDelegate.Combine
: