Although Enable Edit and Continue is checked on the Web tab of my ASP.Net MVC 2 project, I cannot in fact change the source code while running. For example, if I try to edi
Further to @Darin's answer I'd have to say I don't like the idea of being able to change code whilst running.
I think we should be disciplined enough to write a test that reflects the expected outcome, write the code and then test live.
Having said that though, the way I get around that is to start the application in a browser w/out running, making my changes, compiling and then refreshing the browser.
Of course then I don't have the benefit of stepping through code but I can attach to the worker process at any time I need to.