How to edit code while debugging 64-bit

I am using Visual Studio 2012, Vb. I am trying to use edit-and-continue (edit code when debugging) and get this exception:

"Changes in 64-bit applications are not allowed."

And x86 platform targeting doesn't work. What can I do? Any suggestion?

+4
source share
2 answers

Change + Continue in VS2012 is supported only for 32-bit code, as it was with VS2005.

This will change soon, E + C for 64-bit managed code will be supported in VS2013. Currently in preview.

+4
source

Edit and Continue are now officially available in Visual Studio 2013 for 32-bit and 64-bit.

0
source

Source: https://habr.com/ru/post/1490920/


All Articles