Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Code snippets are a pretty underused feature in Visaul Studio and it can really save you alot of time. What custom code snippets do you guys use in your everyday coding?

Let me list some of mine:

vprop - view state property

ane - argument null exception

event - definition for an event handler

noe - expands into String.IsNullOrEmpty()

What do you guys use?

share|improve this question
3  
I must remember noe cause I use string.isnullorempty a lot - didn't noe about it before (bad pun - couldn't help myself) – Robert MacLean Feb 5 '09 at 14:39
1  
@RobertMacLean Now you noe :) – chridam Jun 28 '12 at 11:30

closed as not constructive by rene, Abizern, Frank van Puffelen, Monolo, Ben Sep 16 '12 at 13:41

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

I use a lot these two code snippets:

valargnull, which generates this code:

if($argument$ == null)
    throw new ArgumentNullExcption("$argument$");

and valstrempty:

if(String.IsNullOrEmpty($argument$))
    throw new ArgumentException("The value of $argument$ cannot be null or empty.", "$argument$");

where $argument$ is the text portion of the snippet you can edit.

share|improve this answer

Once I use often
propdp - Creating dependancy properties (I do lots of workflow)
tryf - Nothing like a good try finally block
foreach - create a stub foreach block. I have the devexpress stuff in so once done, it's quick to change the var to an explict item
for - for loops
exception - for creating custom exceptions

share|improve this answer

Some obvious ones -

  • ctor - generates parameterless constructor
  • propg - generates automatic private property

But I just love the 'Surround With' style snippets. Ctrl + K + S with a selection and then most standard constructs are there (if, using, try etc...).

Here's another simple one I wrote for queueing on the Threadpool.

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
    <CodeSnippet Format="1.0.0">
        <Header>
            <Title>{Threadpool}</Title>
            <Shortcut>{threadpool}</Shortcut>
            <Description>Code snippet for {Threadpool}</Description>
            <Author>Stimul8d</Author>
            <SnippetTypes>
                <SnippetType>Expansion</SnippetType>
                <SnippetType>SurroundsWith</SnippetType>
            </SnippetTypes>
        </Header>
        <Snippet>
            <Code Language="csharp"><![CDATA[ThreadPool.QueueUserWorkItem(new WaitCallback((o) =>
                { 
        $selected$ $end$ 
    }));]]>
            </Code>
        </Snippet>
    </CodeSnippet>
</CodeSnippets>
share|improve this answer

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