QuickCode.NET Help
Introduction
QuickCode.NET is an add-in for Microsoft Visual Studio 2005 through 2013. Basically, it replaces short patterns of text with more complex ones as you type. For example, typing
prop int test
and pressing Tab replaces this line with:
public string Test
{
get
{
return this.test;
}
set
{
this.test = value;
}
}
This is called a QuickCode. This particular one replaces the pattern
prop type name
with the replacement
public type name
{
get
{
return this.name;
}
set
{
this.name = value;
}
}
QuickCode.NET allows you to create, test, and use these QuickCodes, right from within Visual Studio.
More about QuickCodes