Snippets - Visual Studio
ctrl + k, ctrl + x: mapped to Edit.InsertSnippet and shows you the full list of snippets available.
Type in the snippetId and press tab twice.
ctor
public ClassName()
{
}ctorp
public ClassName(string param1)
{
Param1 = param1
}prop
public TYPE Type { get; set; }