Quickcode.Net

I found this very cool utility.

QuickCode .NET is a Visual Studio® add-in that allows you to type short phrases like

prop int test

and press Alt+Q to expand this into (for example):

private int test;

// <summary>
// Property Test (int)
// </summary>
public int Test
{
  get
  {
    return this.test;
  }
  set
  {
    this.test = value;
  }
}

These short phrases are called 'QuickCodes' and the QuickCode .NET add-in allows you to define them at will. You can define an 'expansion' for the QuickCode for C#, VB, HTML/ASP and other text files, using a real "syntax coloring" editor. Which expansion is used, depends on the name of the file in which the QuickCode is used, so QuickCode .NET supports C#, VB.NET and ASP.NET seamlessly. More languages are to follow.

Download

 

3 Comments

Comments have been disabled for this content.