views:

45

answers:

2

I noticed that when you type ctor then hit the tab button, VS will automatically create a constructor skeleton for you.

I also saw in a screencast, the speaker could generate, among other things :Console.WriteLine, and also skeleton methods for all interface methods using keyboard shortcuts.

However, I couldn't get what keyword he was typing.

What is this feature called? and where can I see the list of keywords and the effects?

+2  A: 

I think Code Snippets is what you may be looking for.

Various options of how to invoke them, including via keyboard shortcuts are listed here

The above link just lists the default snippets that come with VS.

However you can also create and use your own snippets. Refer tutorials here for how to go about doing it

InSane