Frequently used shortcut keys in visual studio
Keyboard shortcuts are very useful for developers to do the work faster. It will reduce the time to move the mouse again & again in visual studio. I am going to share some frequently used shortcut keys in visual studio.
Shortcut Keys
Shortcut Keys
Shortcut | Description |
---|---|
F5 | Start Debugging. |
Ctrl-F5 | Runs the code without invoking the debugger. |
Shift-F5 | Stop Debugging. |
F7 | Switches from the design view to the code view. |
Shift-F7 | Switches from code view to design view. |
F9 | Sets or removes a breakpoint at the current line. |
F10 | Debug to next line but does not step into any function calls. |
F11 | Debug to next line & tracing execution into function calls. |
F12 | Displays the definition for the selected symbol in code |
Ctrl+m+o | Collapse all region |
Ctrl+m+l | Expand all region |
Ctrl+m+m | Collapse, expand one region |
Ctrl+k+u | Uncomment Code |
Ctrl+k+c | Comment Code |
Ctrl+Shift+B | Build Code |
Ctrl+Shift+F9 | Delete all break points |
0 comments :
Post a Comment