System.Event 是否在主线程中执行?
我想知道当我们在程序中实现任何 System.Event 时,该事件和事件处理程序是在程序的主线程中运行还是在单独的线程中执行?
谢谢
I want to know that when we implement any System.Event in the program, doest that event and the event handler run in Main thread of the program or they get executed in the seperate thread ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该事件在引发该事件的线程上执行。
The event gets executed on the thread that raises the event.