重载方法以允许将其添加为事件处理程序?
我正在重载一个方法,以便可以将其分配给一个事件。必须有更好的方法来做到这一点。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
匿名方法在这里效果很好:
编译器几乎做了你所做的事情,但需要阅读的管道代码更少。
An anonymous method works well here:
The compiler pretty much does what you did, but with less plumbing code to read.