J
Jay
Guess this has probably been reported already. Seems if you don't use {}
with for/while etc., the debugger stops at the wrong line. In the example
below, I had a breakpoint at line 6 but the debugger stopped in every
iteration of the loop.
Jay
1. for (int index=0; index < line_buffer.Length (); index++)
2. if (line_buffer [index] == '\t')
3. line_buffer [index] = ' ';
4. // }}}
5. //
6. terminator_holding_chars = ""; // <- breakpoint here
with for/while etc., the debugger stops at the wrong line. In the example
below, I had a breakpoint at line 6 but the debugger stopped in every
iteration of the loop.
Jay
1. for (int index=0; index < line_buffer.Length (); index++)
2. if (line_buffer [index] == '\t')
3. line_buffer [index] = ' ';
4. // }}}
5. //
6. terminator_holding_chars = ""; // <- breakpoint here