Jump to content

Code snippets

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ed Poor (talk | contribs) at 19:54, 16 November 2006 (a feature of Visual Studio that provides handy insertion of small pieces of code structure). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

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)
 {

 }