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.

What is the code-snippet or short cut to create a constructor in Visual Studio?

Visual Studio 2010 and C#.

I've used before but I can't remember.

share|improve this question

6 Answers

up vote 31 down vote accepted

Type "ctor" and the TAB, this will create the default constructor for the class you are in

public MyClass()
{

}

On your previous question someone gave an answer where you can see all the code-snippets.

UPDATE It seems that in some cases you will have to press tab twice. Thanks @ho1.

share|improve this answer
Minor correction, I think you need to hit Tab twice. – ho1 Oct 6 '10 at 14:47
@ho1: it works if you press tab once. – Amra Oct 6 '10 at 14:49
Not for me (typing ctor only shows the intellisense box, then I have to type Tab once to close that and once to "use" the snippet), but might be some setting somewhere... – ho1 Oct 6 '10 at 16:02
In addition to this technique. If you make use of the class with a specific signature, you can refactor to get visual studio to generate the constructor for you. Also if this is a default constructor and you are not doing anything with it, then it is assumed to be there by default. – James Jul 15 '12 at 10:49

type ctor and tab but Is there any short cut key to have base class constructor

share|improve this answer

Don't know about VS 2010 but in 2008 the code snippet is 'ctor'

share|improve this answer
It is the same for vs-2008 and vs-2008, and I think is also the same for vs-2005 but not 100% sure. – Amra Oct 6 '10 at 14:48

Simply type ctor then tab.

share|improve this answer

Type ctor then Press Tab Key

share|improve this answer

In VS2010, if you type "ctor" (without the quotes), intellisense should load showing you "ctor" in the list. Now press TAB twice and you should have generated an empty constructor.

share|improve this answer

Your Answer

 
discard

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