In Visual C# 2008 Express I can type e.g.

for{TAB}{TAB}

and a code snippet pops in.

Are there built-in code snippets for private/public/etc. methods as well?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 10 down vote accepted

ctor: Default constructor

prop: Property

propg: Read only property

sim: static int main method

svm: static void main method

There's a good list here. And if you want to make your own the Snippet Designer is very good.

link|improve this answer
You insert it with a shortcut keyword, like meth<Tab><Tab>, by going into the Properties pane and setting the Shortcut option (e.g., "meth")? – bamccaig Sep 19 '11 at 17:10
feedback

Properties are

prop{TAB}{TAB}

link|improve this answer
feedback

You can create customs snippets. Like this:

http://www.mediafire.com/file/gz3tzjnydk5/meth.snippet

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.