Jump to content

Code snippets

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Obina (talk | contribs) at 21:34, 24 December 2006. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

 ??? 

The code snippets feature of Visual Studio provides handy insertion of small pieces of code structure.

For example choosing the if code snippet inserts an if statement with a curly-brace code block.

 if (true)
 {

 }