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

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -