What is the code snippet or shortcut for creating a constructor in Visual Studio?
Visual Studio 2010 and C#.
I have created some handy code snippets that'll create overloaded constructors as well. You're welcome to use them: https://github.com/ejbeaty/Power-Snippets
For example: 'ctor2' would create a constructor with two arguments and allow you to tab through them one by one like this:
public MyClass(ArgType argName, ArgType argName)
{
}