在 Mono.Cecil 中创建事件

发布于 2024-12-01 15:56:53 字数 315 浏览 1 评论 0原文

我一直在尝试使用 Mono.Cecil 创建事件,但不知道如何创建。

EventDefinition newEvent = new EventDefinition("newEvent", 
                                               Mono.Cecil.EventAttributes.None, 
                                               someRefToTheEventHandlerDelegate);

我被困在插件和删除部分。请帮我。

I've been trying to create events with Mono.Cecil, but not sure how.

EventDefinition newEvent = new EventDefinition("newEvent", 
                                               Mono.Cecil.EventAttributes.None, 
                                               someRefToTheEventHandlerDelegate);

I'm stuck at the addon and removeon part. Please help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

苍景流年 2024-12-08 15:56:53

您需要添加“add_newEvent”和“remove_newEvent”的 MethodDefinition 并将它们分配给 newEvent 实例。

了解 Cecil 如何工作以及它希望如何设置的一个简单方法是:

1) 在程序集中编译您想要的内容(例如,您希望的事件);

2) 使用 Mono.Cecil 加载它

3) 使用调试器(MonoDevelop 或 VisualStudio 都可以)来查看内容是如何填充的;

4) 将其编入您的应用程序中;

5)利润! ;-)

You'll need to add the MethodDefinition for "add_newEvent" and "remove_newEvent" and assign them to the newEvent instance.

An easy way to learn how Cecil works and how it wants things to be set up is to:

1) compile what you want in an assembly (e.g. your event as you wish it);

2) load it with Mono.Cecil

3) use a debugger (MonoDevelop or VisualStudio will do) to see how things are populated;

4) codify the same into your application;

5) profit! ;-)

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