Friday, May 30, 2008

Visual Studio : Snippets

This is for VS 2005.

Type a common keyword e.g.

for

Then hit the Tab key twice.

VS generates:



for (int i = 0; i < length; i++)
{

}



There's a whole lot of others listed here:

Enjoy!

No comments: