如何在运行时应用代码更改而不中断执行
我在 Visual Studio 2008 中,正在开发一个非常庞大的项目,当它在调试中运行时,需要花费大量时间来构建,并且我做了一些代码更改,我希望它在运行时合并这些代码更改。我确实明白这并不总是可能的,但在某些情况下是可能的。
我确实知道,当我使用断点中断执行,然后添加代码,然后再次介入时,它会应用代码更改,但我希望它在不中断执行的情况下应用代码更改。
I am in visual studio 2008 and working on a very huge project which takes alot of time to build now when it is running in debug and i make some code changes i want it to incorporate those code changes at run Time. i do understand that this will not be always possible but in some situation it is.
I do know that when i break the execution using break point and then add code then step in again it applies code changes but i want it to apply code changes without breaking execution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为没有办法做你想做的事。
我在我的 asp.net 应用程序中使用以下技巧来执行我的代码更改。
I think there no way to do the thing you want.
I use following trick in my asp.net application to execute my code change.