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:

    enter image description here


Comments

Popular posts from this blog

php - Magento - Deleted Base url key -

javascript - Tooltipster plugin not firing jquery function when button or any click even occur -

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -