C# 中的代表

发布于 2024-10-05 03:22:58 字数 104 浏览 3 评论 0原文

如何使用反射添加委托方法?让我们考虑一下我有两个程序集,一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芯好空 2024-10-12 03:22:58

像这样的事情(警告 - 未编译测试):

// get the methodinfo for the method you want to add
MethodInfo methodToAdd = typeof(AAA).GetMethod("MyMethod");

// create a delegate instance for it
Delegate methodDelegate = Delegate.CreateDelegate(typeof(BBB.MyDelegate), methodToAdd);

// get the event you want to add to
EventInfo eventToAddMethodTo = typeof(BBB).GetEvent("MyEvent");

// call the event's add method, with the delegate you want to add
eventToAddMethodTo.AddEventHandler(null /*or the AAA instance if this is a non-static event */, methodDelegate);

如果它不是您要添加的事件,而只是另一个 Delegate,那么您可以使用 Delegate.Combine

Delegate combinedDelegate = Delegate.Combine(oldDelegate, methodDelegate);

Something like this (warning - not compile tested):

// get the methodinfo for the method you want to add
MethodInfo methodToAdd = typeof(AAA).GetMethod("MyMethod");

// create a delegate instance for it
Delegate methodDelegate = Delegate.CreateDelegate(typeof(BBB.MyDelegate), methodToAdd);

// get the event you want to add to
EventInfo eventToAddMethodTo = typeof(BBB).GetEvent("MyEvent");

// call the event's add method, with the delegate you want to add
eventToAddMethodTo.AddEventHandler(null /*or the AAA instance if this is a non-static event */, methodDelegate);

If it's not an event you want to add to, but just another Delegate, then you use Delegate.Combine:

Delegate combinedDelegate = Delegate.Combine(oldDelegate, methodDelegate);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文