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.
|
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. |
||||
|
|
|
Type "ctor" and the TAB, this will create the default constructor for the class you are in
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. |
|||||||||
|
|
Don't know about VS 2010 but in 2008 the code snippet is 'ctor' |
|||
|
|
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. |
|||
|
|