当我使用 Application.Exit() 时,集合已修改错误即将到来
当我在应用程序中使用 Application.Exit() 方法时,它显示一个错误,例如
集合已修改异常即将到来
如何处理此异常
提前致谢
when i use Application.Exit() method in my application it is showing an error like
collection was modified exception is comming
how to handle this exception
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保在调用
Application.Exit()
之前所有线程都已结束You need to make sure that all of your threads are ended before you call
Application.Exit()