重载方法以允许将其添加为事件处理程序?

发布于 2024-11-07 01:17:02 字数 238 浏览 0 评论 0原文

我正在重载一个方法,以便可以将其分配给一个事件。必须有更好的方法来做到这一点。

myMethod(){
    //Does some stuff...
}
myMethod(object sender, FormClosingEventArgs e){
    myMethod();
}

Form.FormClosing += new FormClosingEventHandler(myMethod);

I'm overloading a method so it can be assigned to an event. There has to be a better way to do this.

myMethod(){
    //Does some stuff...
}
myMethod(object sender, FormClosingEventArgs e){
    myMethod();
}

Form.FormClosing += new FormClosingEventHandler(myMethod);

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

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

发布评论

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

评论(1

故人爱我别走 2024-11-14 01:17:02

匿名方法在这里效果很好:

form.FormClosing += delegate { myMethod(); };

编译器几乎做了你所做的事情,但需要阅读的管道代码更少。

An anonymous method works well here:

form.FormClosing += delegate { myMethod(); };

The compiler pretty much does what you did, but with less plumbing code to read.

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