QuickCode.NET Help
NOTE: due to a stupid oversight on my part, QuickCode.NET 2008 still expired on October 1st, 2008 up until version 3.0.5. This was not supposed to be the case. Version 3.0.6 onwards do not expire anymore. I apologize for the inconvenience! Download the new version here .
Introduction
QuickCode.NET is an add-in for Microsoft Visual Studio 2005 and 2008. 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