Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are your most frequently used shortcut keys in visual studio? [closed]

Recently , I found some shortcut key really helpful which I never used before . Such keys like F7 ,F3 ,Ctrl+g help me a lot when editing and debuging. What are your most frequently used shortcut keys in visual studio?

like image 659
MainID Avatar asked Jan 21 '09 22:01

MainID


Video Answer


2 Answers

including Resharper's shortcuts:

  • Ctrl-Shift-B (build)
  • F12 (go to definition)
  • Shift-F12 (find usages)
  • Ctrl-- (go to last location)
  • Alt-Shift-L (go to current file in the solution explorer)
  • Alt-\ (find member)
  • Ctrl-T (find type)
  • Ctrl-Shift-T (find file)
  • Shift-Esc (close current dialog)
  • Ctrl-Shift-S (save all files - VS tends to forget)

EDIT: added explanations

like image 53
orip Avatar answered Sep 28 '22 23:09

orip


I always use the debugging keyboard shortcuts - F9 (toggle breakpoint), F10 (step over) and F11 (step into). I can't believe that some of my coworkers actually use the toolbar buttons for this - it's insanely more efficient to use the shortcuts.

like image 28
Andy Avatar answered Sep 28 '22 21:09

Andy