c# - In debug mode, is there a way to break(pause the execution) whereever it is? -
if put breakpoint somewhere in code, pausing when program read line of code.
sometimes while program running, want pause it. not know line of code reading currently. possible pause execution whereever is, if breakpoint exists there?
is possible pause execution whereever is, if breakpoint exists there?
yes, when debugging, these options:
- on debug menu, click break all
- keyboard shortcut: ctrl+alt+break
using gui, click on highlighted pause icon:
Comments
Post a Comment