Hi,
Currently the debugger stops on the next possible line if a breakpoint is inserted on an empty line. However, the debugger does not stop at all if a break point is inserted on something else than the last row of a multi-line code like
string adf = "" + "sdfadf" + "fffff"; //breakpoint needs to be on this line for the debugger to stop
This is a bit confusing as you think that you have a breakpoint, but in practice the debugger behaves as it there would not be a breakpoint at all.
So if possible I would think it would be more user-friendly for the debugger to stop on the next possible line also in the case of multi-line code. EDIT as suggested by @Mischa Spelt Would be even better if the debugger would stop on the first line in case of multi-line code.
Axel