Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

4 Answers

up vote 15 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.

share|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
The link to the list gives a 404 – FelixMM Jan 25 at 18:58
@FelixMM Odd it redirected for me. Anyway I've updated it to the new location. – Cameron MacFarland Jan 25 at 23:38

Properties are

prop{TAB}{TAB}

share|improve this answer

You can create customs snippets. Like this:

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

share|improve this answer

I made my own snippet for a method. The XML code for it is the following, and you can add it to a file called "my_method.snippet" (or whatever_you_want.snippet) in C:\Users\YOUR_USERNAME\Documents\Visual Studio 2012\Code Snippets\Visual C#\My Code Snippets (your path might be different because I use VS2012):

<CodeSnippet Format="1.0.0">
    <Header>
        <Title>method</Title>
        <Shortcut>method</Shortcut>
        <SnippetTypes>
            <SnippetType>Expansion</SnippetType>
        </SnippetTypes>
    </Header>
    <Snippet>
        <Declarations>
            <Literal>
                <ID>access_modifier</ID>
                <Default>private</Default>
            </Literal>
            <Literal>
                <ID>return_type</ID>
                <Default>void</Default>
            </Literal>
            <Literal>
                <ID>name</ID>
                <Default>New_method</Default>
            </Literal>
        </Declarations>
        <Code Language="csharp">
            <![CDATA[$access_modifier$ $return_type$ $name$ ()
    {
    $end$
    }]]>
        </Code>
    </Snippet>
</CodeSnippet>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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