vote up 1 vote down star
1

What are the best code snippets for C#? (using visual studio) VB has a lot that are pre-defined, but there are only a handful for C#. Do you have any really useful ones for C#?

Anyone want to post a good custom one you created yourself?

Anyone?... Bueller?

flag

57% accept rate
You're really going to have to be more specific... Are you looking for websites that contain web snippets and tutorials? Code snippets themselves on a particular topic? This is a very, very general question. – Nicholas Sep 7 '08 at 0:18
Have you even used any code snippets? There is no "best" code snippets. There are snippets that are more "useful" than others, but no "best" snippets. I wish i can edit the title... – Sung Meister Sep 7 '08 at 0:37
Snippets work well for situation and save typing. For example I have created custom snippets because I am replacing some old code in files, and I can't use copy replace, so I can highlight the old code, and then use my snippet. – David Basarab Sep 10 '08 at 13:03

7 Answers

vote up 1 vote down check

VB has a lot that are pre-defined, but there are only a handful for C#. Do you have any really useful ones for C#?

Microsoft have released a whole bunch of C# snippets that bring it up to parity with the ones for Visual Basic. You can download them here:

http://msdn.microsoft.com/en-gb/vstudio/aa718338.aspx

link|flag
cool, thanks. I didn't see these... – TheImirOfGroofunkistan Jul 7 at 19:57
vote up 1 vote down

prop and exception are my favorites.

link|flag
vote up 4 vote down

There's plenty of code snippets within Visual Studio for basic programming structure but I wouldn't necessarily rate one higher than another.

I would definitely say the best ones are the custom snippets you define yourself to accomplish more specific tasks that you may find yourself using on a regular basis. Definitely a big time saver.

A fairly basic intro to creating custom snippets can be found at http://www.15seconds.com/issue/080724.htm to help with this.

link|flag
vote up 1 vote down

These are the ones I use daily.

  • prop
  • try
  • if
  • else
  • for
  • foreach
  • mbox - Message box stub
  • The ability to role your own. I have one for Property that are saved in the view state, methods a custom class example.
link|flag
vote up 0 vote down

I just started a blog, where I document short solutions in C# (code snippets) that I came up with and might prove useful to other coders.

http://thorstenlorenz.blogspot.com/

So far I have mostly blogged about extension methods and generics.

So have a look and tell me what you think.

link|flag
vote up 0 vote down

My absolute favorite is cw.

link|flag
vote up 0 vote down

I had a few on my old blog:

I also have an argnull code snippet that inserts a Guard Clause that checks an argument for null and throws an ArgumentNullException, but I haven't gotten around to post that yet.

link|flag

Your Answer

Get an OpenID
or

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