Auto-generate a try catch block in visual studio 2010
If you don't want to remove your fingers from the keyboard, you can hit Ctrl + K, Ctrl + S, then T, then Enter. That's basically what he said, but without using the mouse.
http://msdn.microsoft.com/en-us/library/6hf704tz%28VS.80%29.aspx
type try
then hit Tab,Tab
2 x Tab activates a code snippet.
type tryf
, Tab,Tab to activate the try..finally
block instead
Have you tried using snippets?
Using the mouse
Mark your code
Right-click
Select
Surround with...
Double-click
try
Using the keyboard #1
Mark your code using Shift, Ctrl + A, or whatever works for you
Press
Menu key
/Application key
(alternatively Shift + F10)Type S
Type T
Press Enter or Tab
Using the keyboard #2 (as perlox and Fredrik Norlin points out)
Mark your code using Shift, Ctrl + A, or whatever works for you
Press Ctrl + K, followed by CTRL + S
Type T
Press Enter or Tab