This post originated from an RSS feed registered with .NET Buzz
by Sean McCormack.
Original Post: Cool Tool: QuickCode.NET
Feed Title: Vini Vidi Vici - Sean McCormack's Blog
Feed URL: http://smccormack.blogs.com/adapdev/SyndicationService.asmx/GetRss
Feed Description: Sean McCormack's Blog, focusing on various aspects of .NET development, open source projects, recommended books and tools
This is an awesome tool that can
really speed development and make life simpler.
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; } }
BLOCKQUOTE
What's really nice is that there's a large number
of contributions that add several new phrases, such as the ability to generate
strongly-typed collections, events and C# to VB.NET conversion.>