How can I get rid of the "file changed" warning in Visual Studio debugger

When I’m debugging I will write notes where I hit issues, then continue with my debugging. I turn off Edit & Continue because with my notes, the code won’t compile. But what’s annoying is I get a warning from the Visual Studio debugger every time I do this. And I know there’s a way to… Read More How can I get rid of the "file changed" warning in Visual Studio debugger

strange problem during debugging "no executable code of the debugger's target code type is associated with this line"

this program (i.e sum_remainder) computes the sum of remainders of each element of src[i]. this way: sum += src[i] % divisor this program doesn’t have any error/warning based on the debugger (F5, using visual studio), but when I debug line by line by setting a breakpoint it starts automatically from "return 0" in the main.… Read More strange problem during debugging "no executable code of the debugger's target code type is associated with this line"