Debugging Support for 64-bit Edit and Continue in Visual Studio 2013
Join the DZone community and get the full member experience.
Join For Freevisual studio 2013 and .net framework 4.5.1 preview introduce a new feature that has been requested by community for long time – 'edit and continue' (aka. edit and go) when debugging 64bit applications. support for 64bit applications is finally here! let’s see how it works.
what is edit and continue?
for those who don’t know visual studio lingo very well, here is the illustration of a problematic result when trying to modify running code on the debugger:
edit and go was previously supported only on 32bit platforms.
edit and go with visual studio 2013
let’s run the simple code shown here:
static void main(string[] args) { console.writeline("red cat"); console.writeline("press any key to continue ..."); console.readline(); }
and let’s put a breakpoint here:
now let’s run the code and when the breakpoint is hit then let’s modify the text that will be written to the console:
now let’s click continue and see what happens. well… no errors and here is the result on my screen:
i’m happy about this update because all my development virtual machines use 64bit windows and now i can debug applications better.
Published at DZone with permission of Gunnar Peipman, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
How To Use Pandas and Matplotlib To Perform EDA In Python
-
Using OpenAI Embeddings Search With SingleStoreDB
-
Integration Testing Tutorial: A Comprehensive Guide With Examples And Best Practices
-
WireMock: The Ridiculously Easy Way (For Spring Microservices)
Comments