반응형
https://docs.microsoft.com/ko-kr/visualstudio/debugger/debugger-feature-tour?view=vs-2019
마소 참고
- F5 - Run - This both starts the debugging session and continues the debugging session if the session is paused.
- F10 - Step Over - This runs just the next statement. If the next statement is a function call, it runs the whole function before pausing execution again (unless there is a breakpoint in the function).
- F11 - Step Into - This runs just the next statement. If the next statement is a function call, it will bring you to that function and pause before the first statement in there is run.
- Shift+F11 - Step Out - This runs until the code returns from the currently running function. It’s really handy when you are done debugging a function, but that function still has a lot of statements to execute.
- Ctrl+F10 - Run to Cursor - This allows you to move the cursor to a line of code then run until the debugger gets there. This is handy if you want to skip over a block of code. You could also press F9 then F5 which would add a Breakpoint at your cursor, then run to it.
- Ctrl+Shift+F10 - Set Next Statement - This sets the line your cursor is on as the next statement the debugger will run. Really handy if you missed something and want to backup and debug it again.
- Alt+Num * - Show Next Statement - Sorry laptop users, this one only works with the * on the number pad. This one takes you to the next statement that will run. Really handy if you’ve been sifting through code and want to quickly return to your debugging without executing any statements.
- Shift+F5 - Stop Debugging - Ends your debugging session.
- Ctrl+Shift+F5 - Restart Debugging - Getting the message “Edits were made to the code which cannot be applied while debugging”? This will quickly restart the debug session and have you on your way.
- 출처
https://hutchcodes.net/2019/04/visual-studio-tips-debug-keyboard-shortcuts/
해석
- 디버깅 시작: F5
- 프로시저 단위 실행: F10
- 한 단계씩 코드 실행: F11
- Shift + F11 : 파고들어간 함수를 한 단계 빠져나옴.
- Ctrl + F10 : Run to Cursor (커서위치까지 디버깅 진행하고 대기)
- Shift+F5 (디버깅중지)
- Ctrl+Shift+F5(다시 디버깅)
https://dojang.io/mod/page/view.php?id=806
이글을 참고하세요
반응형
'PC리버싱 > 기타' 카테고리의 다른 글
VMprotect(VMP)맛보기후기 (0) | 2020.06.25 |
---|---|
컴파일러 코드최적화모음 (0) | 2020.06.06 |
재미용)변태적인 C언어 코딩법 (0) | 2020.06.06 |
컴퓨터 참(1) 과 거짓(0)에대해서 (0) | 2020.06.06 |
C언어 while연구자료(기타) (0) | 2020.06.06 |